/* COLORI */

:root {
 --primo: #e60012;
 --secondo: #61c1ba;
 --terzo: #eb6ea5;
 --quarto: #005dac;
 --quinto: #00aa8d;
 --nero: #222222;
 --bianco: #ffffff;
 --grigio: #f7f7f7;
 --grigio-testo: #6d6e70;
 --grigio-back:#eeeeee;
 --trasp: rgba(0, 0, 0, 0);
 --secondo-trasp: rgba(97, 193, 186, 0.90);
 --bianco-trasp: rgba(255, 255, 255, 0.95);
 --bianco-trasp-2: rgba(255, 255, 255, 0.80);
 --bianco-trasp-3: rgba(255, 255, 255, 0.60);
}

/* FINE COLORI */

/*
font-family: "Times New Roman", Times, serif;
font-family: "Open Sans", sans-serif;
*/

html{
  scroll-padding-top: 5.438rem;
}


body {
  color: var(--grigio-testo);
  background-color: var(--bianco);
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--grigio-testo);
  font-family: "Times New Roman", Times, serif;
}

p{
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--grigio-testo);
  margin-bottom: 30px;
  font-weight: 300;
}

p.big-p{
  font-size: 24px;
  line-height: 35px;
  font-weight: 300;
  color: var(--grigio-testo);
  margin-bottom:20px;
}

a {
  color: var(--grigio-testo);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a:hover {
  color: var(--secondo);
  text-decoration: none;
}

a.text-link, .wp-block-paragraph a, a.tit-link {
  position: relative;
  color: var(--primo);
}

a.text-link:hover, .wp-block-paragraph a:hover, a.tit-link:hover {
  color: var(--primo);
}

a.text-link::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--primo);
  bottom:-3px;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.text-link:hover::before{
  width: 0%;
}

a.text-link::after{
  content: "";
  position: absolute;
  display: block;
  bottom:-3px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
a.text-link:hover::after{
  width: 100%;
}

.header .topbar {
  background-color: var(--trasp);
  height: 50px;
  padding: 0;
  font-size: 14px;
  -webkit-transition: all 1.5s ease-out;
  -moz-transition: all 1.5s ease-out;
  -o-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.contact-info ul{
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 20px;
}

.contact-info ul li{
  position: relative;
  padding-right: 7px;
  margin-right: 7px;
  border-right: 1px solid var(--grigio-testo);
}

.contact-info ul li:last-child{
  border-right: 0px;
}

.contact-info ul li i{
  margin-right: 0.4rem;
}

.contact-info ul li a:link,
.contact-info ul li a:visited{
  position: relative;
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 300;
}

.contact-info ul li a:hover{
  color: var(--secondo);
}

.contact-info ul li a::before{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--grigio-testo);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.contact-info ul li a:hover::before{
  width: 0%;
}

.contact-info ul li a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.contact-info ul li a:hover::after{
  width: 100%;
}

.header {
    color: var(--grigio-testo);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    z-index: 1001;
    /*background-color: var(--trasp);*/
    background-color: var(--bianco);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1rem;
}

.header .topbar .contact-info a {
  font-size: 1rem;
  line-height: 1rem;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header .topbar .contact-info a,
.header .topbar .contact-info span {
  position: relative;
  display: inline-block;
  padding: 0.2rem 0.3rem;
  color: var(--grigio-testo);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 0.8rem;
}

.header .topbar .contact-info a:hover{
  color: var(--primo);
  text-decoration: none;
}


.header .topbar .social-links a {
  color: var(--grigio-testo);
  line-height: 0;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin-left: 20px;
  font-size: 16px;
}

.header .topbar .social-links a:hover {
  color: var(--primo);
  text-decoration: none;
}

.header .logo img {
  /*max-height: 2.5rem;*/
  max-height: 3rem;
  margin-right: 0;
}

.scrolled .header {
    background-color: var(--bianco-trasp);
}

.header .branding {
  min-height: 87px;
  padding: 10px 0;
}

/*@media (min-width: 1200px) {
  .navmenu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    height: 50px;
    padding-left: 100px;
  }

  .navmenu::before {
    content: "";
    display: block;
    position: absolute;
    top:0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--secondo);
  }

  .navmenu a:link,
  .navmenu a:visited,
  .navmenu a:focus {
    color: var(--bianco);
    font-size: 14px;
    line-height: 14px;
    padding: 0 5px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    position: relative;
    text-transform: uppercase;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--bianco);
    }

    .navmenu .active{
      font-weight: 900!important;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 18px 14px;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        border-radius: 1px;
        bottom: -6px;
        left: 0;
        background-color: var(--bianco);
        visibility: hidden;
        width: 0px;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .navmenu>ul>li>a.active:before{
      display: none;
    }

    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nero);
      text-transform: uppercase;
      background-color: var(--trasp);
    }

    .navmenu .dropdown ul a:hover {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--bianco)!important;
      text-transform: uppercase;
      background-color: var(--secondo);
    }


}*/

.language {
  position: relative;
  display: flex;
  margin: 4rem 0 0 0;
  padding: 0;
  list-style: none;
}

.language li{
  position: relative;
  padding-top: 7px;
  margin-right: 0.5rem;
}

.language li a:link,
.language li a:visited{
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  border: 1px solid var(--grigio-testo);
  text-indent: -9999px;
  opacity: 0.2;
}

.language li a:hover,
.language li a.selected{
  opacity: 1;
}

.language li a::before{
  display: block;
  position: absolute;
  top:0;
  left: 0;
  font-size: 0.7rem;
  line-height: 34px;
  width: 34px;
  text-align: center;
  color: var(--grigio-testo);
  text-indent: 0;
}

.language li a.lang-it::before{
  content:"IT"
}
.language li a.lang-en::before{
  content:"EN"
}
.language li a.lang-fr::before{
  content:"FR"
}
.language li a.lang-de::before{
  content:"DE"
}
.language li a.lang-es::before{
  content:"ES"
}

.mouse_scroll{
  position: absolute;
  bottom: 6rem;
  left: 50%;
  width: 3rem;
  height: 6rem;
  margin-left: -1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--nero);
  z-index: 99;
}

.mouse_scroll::before{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 1px;
  height: 1.5rem;
  background-color: var(--nero);
  -webkit-animation: scroll-down 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite;
	        animation: scroll-down 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite;
}

@-webkit-keyframes scroll-down {
  0% {
    top:0.7rem;
    bottom: auto;
    height: 0rem;
  }
  40% {
    top:0.7rem;
    bottom: auto;
    height: 1.5rem;
  }
  60% {
    top:auto;
    bottom:3.7rem;
    height: 1.5rem;
  }
  100% {
    top:auto;
    bottom:3.7rem;
    height: 0rem;
  }
}
@keyframes scroll-down {
  0% {
    top:0.7rem;
    bottom: auto;
    height: 0rem;
  }
  40% {
    top:0.7rem;
    bottom: auto;
    height: 1.5rem;
  }
  60% {
    top:auto;
    bottom:3.7rem;
    height: 1.5rem;
  }
  100% {
    top:auto;
    bottom:3.7rem;
    height: 0rem;
  }
}

/* HAMBURGER-MENU */

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
  background-color: var(--grigio-testo);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
  background-color: var(--grigio-testo);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color: var(--grigio-testo);
}
#menu__toggle:checked + .menu__btn:hover > span {
  background-color: var(--bianco);
}
#menu__toggle:checked + .menu__btn:hover > span::before {
  background-color: var(--bianco);
}
#menu__toggle:checked + .menu__btn:hover > span::after {
  background-color: var(--bianco);
}
#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}

.menu__btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0.75rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 1;
  margin: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__btn::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid var(--primo);
  background-color: var(--trasp);
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__btn::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid var(--grigio-testo);
  background-color: var(--trasp);
  z-index: 1;
  opacity: 0.8;
  -webkit-animation: scale-up-center 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
	        animation: scale-up-center 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
            opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 0;
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
            opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 0;
  }
}


.menu__btn:hover::before{
  background-color: var(--primo);
  transform: scale(1.2);
}

.menu__btn > span{
  display: block;
  position: absolute;
  width: 70%;
  height: 1px;
  z-index: 3;
  background-color: var(--grigio-testo);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--grigio-testo);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__btn:hover > span,
.menu__btn:hover > span::before,
.menu__btn:hover > span::after {
  background-color: var(--bianco);
}

.sticky .menu__btn > span,
.sticky .menu__btn > span::before,
.sticky .menu__btn > span::after {
  background-color: var(--secondo);
}

.sticky .menu__btn:hover > span,
.sticky .menu__btn:hover > span::before,
.sticky .menu__btn:hover > span::after {
  background-color: var(--secondo);
}

.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 25%;
  height: 100vh;
  margin: 0;
  padding: 10rem 2.5rem 2rem 2rem;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.90);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/*.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}*/

.menu__box nav.nav-menu{
  position: relative;
  margin: 0;
  padding: 0,
}

.menu__box nav.nav-menu ul{
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__box nav.nav-menu ul li{
  position: relative;
  margin: 0 0 0.5rem 0;
}

.menu__box nav.nav-menu ul li a:link,
.menu__box nav.nav-menu ul li a:visited{
  position: relative;
  display: inline-block;
  display: block;
  margin: 0;
  padding: 1rem;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--grigio-testo);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__box nav.nav-menu ul li a:hover,
.menu__box nav.nav-menu ul li a.active{
  color: var(--primo);
}

.menu__box nav.nav-menu ul li a::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--trasp);
  border: 1px solid var(--primo);
  border-top: 1px solid var(--trasp);
  border-bottom: 1px solid var(--trasp);
  border-right: 1px solid var(--trasp);
  top:0%;
  left: 0%;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__box nav.nav-menu ul li a:hover::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--trasp);
  border-top: 1px solid var(--primo);
  border-bottom: 1px solid var(--primo);
  border-right: 1px solid var(--primo);
}

.menu__box nav.nav-menu ul li.dropdown ul{
  position: relative;
  opacity: 0;
  max-height: 0rem;
  overflow: hidden;
  padding: 0rem 2rem;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__box nav.nav-menu ul li.dropdown.open ul{
  opacity: 1;
  max-height: 30rem;
  padding: 1rem 2rem;
}

.menu__box nav.nav-menu ul li.dropdown ul li{
  position: relative;
}

.menu__box nav.nav-menu ul li.dropdown a i{
  /*position: relative;*/
  position: absolute;
  right: 0.5rem;
  top:50%;
  margin-top: -11px;
  display: inline-block;
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__box nav.nav-menu ul li.dropdown.open a i{
  transform: rotate(-180deg);
}

.menu__box nav.nav-menu ul li.dropdown ul li a:link,
.menu__box nav.nav-menu ul li.dropdown ul li a:visited{
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--grigio-testo);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__box nav.nav-menu ul li.dropdown ul li a::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--trasp);
  border: 1px solid var(--primo);
  border-top: 1px solid var(--trasp);
  border-bottom: 1px solid var(--trasp);
  border-right: 1px solid var(--trasp);
  top:0%;
  left: 0%;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.menu__box nav.nav-menu ul li.dropdown ul li a:hover::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--trasp);
  border-top: 1px solid var(--primo);
  border-bottom: 1px solid var(--primo);
  border-right: 1px solid var(--primo);
}

.menu__box nav.nav-menu ul li.dropdown ul li a:hover{
  color: var(--primo);
}

/* FINE HAMBURGER MENU */

.hero::before{
  display: none;
}

.hero {
    position: relative;
    height: calc(100vh - 137px);
    min-height: 0px;
    margin-top: 137px;
    display: flex;
    align-items: center;
    background: var(--bianco);
    overflow: hidden;
}

.section_video {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	overflow: hidden;
	z-index: 1;
}
.section_video .mask {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
}
.section_video video {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	z-index: 1;
  filter: opacity(0.5);
}

.section_video::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.2) 100%);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.2) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);
  z-index: 1;
}


.hero h1{
  position: relative;
  z-index: auto;
  font-weight: 600;
  font-style: italic;
  color: var(--secondo);
  font-size: 60px;
  line-height: 60px;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}

.hero h2{
  position: relative;
  z-index: auto;
  font-weight: 700;
  color: var(--terzo);
  font-size: 24px;
  line-height: 35px;
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  margin-bottom: 48px;
}

a.cta:link,
a.cta:visited{
  position: relative;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--grigio-testo);
  font-weight: 300;
  padding: 1rem 1rem;
  background-color: var(--trasp);
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.cta:hover{
  color: var(--primo);
}

a.cta::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--trasp);
  border: 1px solid var(--primo);
  border-top: 1px solid var(--trasp);
  border-left: 1px solid var(--trasp);
  border-right: 1px solid var(--trasp);
  bottom:0%;
  left: 0%;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.cta span{
  position: relative;
  z-index: 2;
}

a.cta:hover::before{
  height: 100%;
  border-top: 1px solid var(--primo);
  border-left: 1px solid var(--primo);
  border-right: 1px solid var(--primo);
}


a.cta-w:link,
a.cta-w:visited{
  position: relative;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--grigio-testo);
  font-weight: 300;
  padding: 1rem 1rem;
  background-color: var(--trasp);
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.cta-w:hover{
  color: var(--primo);
}

a.cta-w::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--trasp);
  border: 1px solid var(--primo);
  border-top: 1px solid var(--trasp);
  border-left: 1px solid var(--trasp);
  border-right: 1px solid var(--trasp);
  bottom:0%;
  left: 0%;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.cta-w span{
  position: relative;
  z-index: 2;
}

a.cta-w:hover::before{
  height: 100%;
  border-top: 1px solid var(--primo);
  border-left: 1px solid var(--primo);
  border-right: 1px solid var(--primo);
}

.cta-container{
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-top: 60px;
}

.cta-container a{
  min-width: 300px;
  margin: 0 5px;
}

section, .section {
  position: relative;
  color: var(--grigio-testo);
  background-color: var(--bianco);
  /*padding: 16rem 0;*/
  padding: 8rem 0;
  scroll-margin-top: 256px;
  overflow: clip;
}

section .container, .section .container{
  position: relative;
  z-index: 8;
}

/*section.about,
section.education,
section.article{
  min-height: 600px;
  height:auto !important;
  height: 600px;
}*/

.chi-siamo_home{
  position: relative;
  text-align: center;
}

h3.label-section{
  position: relative;
  color: var(--grigio-testo);
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

h4.title-section{
  position: relative;
  color: var(--grigio-testo);
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

h4.title-section::before{
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  border-radius: 1px;
  background-color: var(--secondo);
  bottom:-20px;
  left: 50%;
  transform: translateX(-25px);
}

.chi-siamo_home .cta{
  margin-top: 30px;
}

.prodotti_home{
  padding-top:75px;
  padding-bottom: 155px;
}

.prodotti_home::before{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(100% - 200px);
  height: 100%;
  left: 100px;
  top:0;
  background-color: var(--secondo);
  background-image: url(../img/product_background.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
  overflow: hidden;
}

.prodotti_home .container{
  position: relative;
  z-index: 2;
  text-align: center;
}

.prodotti_home .container h4{
  color: var(--bianco);
}

.prodotti_home .container h4::before{
  background-color: var(--bianco);
}

.prodotti_home .container p{
  color: var(--bianco);
}

a.box_product_home{
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
  border:1px solid var(--grigio-testo);
  background-color: var(--bianco);
  justify-content: center;
  align-items: center;
  /*aspect-ratio: 4/3;
    // Fallback
    @supports not (aspect-ratio: 4/3) {
    &::before {
      float: left;
      padding-top: 75%;
      content: "";
    }
    &::after {
      display: block;
      content: "";
      clear: both;
    }
  }*/
}

a.box_product_home img{
  position: relative;
  width: 100%;
  margin-bottom: 3.875rem;
  height: auto;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  filter: grayscale(0) opacity(1);
}

a.box_product_home:hover img{
  filter: grayscale(1) opacity(0.5);
  transform: scale(1.1);
}

a.box_product_home .dida_product_home{
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: calc(100% - 9rem);
  background-color: var(--trasp);
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  z-index: 3;
}

a.box_product_home:hover .dida_product_home{
  top: 0;
}

a.box_product_home .dida_product_home h3{
  /*font-size: 36px;
  line-height: 36px;
  margin-bottom: 36px;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--testo-grigio);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_product_home:hover .dida_product_home h3{
  color: var(--bianco);
}

a.box_product_home .dida_product_home p{
  color: var(--bianco);
  opacity: 0;
  margin: 0;
  padding: 0 20px;;
  /*font-size: 20px;
  line-height: 30px;*/
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  min-height: 108px;
  height:auto !important;
  height: 108px;
}

a.box_product_home:hover .dida_product_home p{
  opacity: 1;
}

a.box_product_home::before{
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 0%;
  /*background-color: var(--grigio-testo);*/
  background-color: var(--secondo);
  mix-blend-mode: multiply;
  top:0;
  left: 0;
}

a.box_product_home::after{
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 62px;
  background-color: var(--grigio);
  bottom:0;
  left: 0;
}

a.box_product_home:hover::before{
  height: 100%;
}

a.box_product_home:hover::after{
  opacity: 0;
  height: 0;
}

a.box_news{
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 4rem;
  background-color: var(--bianco);
}

a.box_news .img-frame{
  position: relative;
  width: 100%;
  border:1px solid var(--grigio-testo);
  height: auto;
  overflow:hidden;
}

a.box_news .img-frame img{
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  filter: grayscale(0) opacity(1);
}

a.box_news:hover .img-frame img{
  filter: grayscale(1) opacity(0.5);
  transform: scale(1.1);
}

a.box_news .dida_news{
  position: relative;
  width: 100%;
  background-color: var(--trasp);
  z-index: 3;
}

/*a.box_news:hover .dida_news{
  top: 0;
}*/

a.box_news .dida_news h3{
  /*font-size: 36px;
  line-height: 36px;
  margin-bottom: 36px;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--testo-grigio);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_news:hover .dida_news h3{
  color: var(--primo);
}

a.box_news .dida_news h5{
  position: relative;
  display: inline-block;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 0.7rem;
  color: var(--bianco);
  background-color: var(--primo);
  padding: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.box_news .dida_news p{
  color: var(--testo-grigio);
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.2rem;
  text-align: left;
  min-height: 108px;
  height:auto !important;
  height: 108px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_news .dida_news p strong{
  font-weight: 700;
}

a.box_news:hover .dida_news p{
  opacity: 1;
  color: var(--primo);
}

a.box_news .img-frame::before{
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 0%;
  background-color: var(--secondo);
  mix-blend-mode: multiply;
  top:0;
  left: 0;
}

/*a.box_news .img-frame::after{
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 62px;
  background-color: var(--grigio);
  bottom:0;
  left: 0;
}*/

a.box_news:hover .img-frame::before{
  height: 100%;
}

a.box_news:hover::after{
  opacity: 0;
  height: 0;
}





.tecnologia_home{
  position: relative;
  text-align: center;
}

a.box_tech_home{
  position: relative;
  display: inline-block;
  width: 100%;
}

a.box_tech_home img{
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.5;
}

a.box_tech_home:hover img{
  opacity: 1;
}

a.box_tech_home .icon_tech{
  position: relative;
  margin-top: -27px;
  border-bottom: 1px solid var(--trasp);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-ou
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_tech_home:hover .icon_tech{
  border-bottom: 1px solid var(--secondo);
}

a.box_tech_home .icon_tech .icon_tech_frame{
  position: relative;
  left: 50%;
  transform: translateX(-26px);
  width: 53px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bianco);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_tech_home:hover .icon_tech .icon_tech_frame{
  background-color: var(--secondo);
}

a.box_tech_home .icon_tech .icon_tech_frame img{
  position: relative;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_tech_home:hover .icon_tech .icon_tech_frame img{
  filter: brightness(0) invert(1);
}

a.box_tech_home h5{
  position: relative;
  z-index: auto;
  font-size: 24px;
  color: var(--grigio-testo);
  font-weight: 600;
  line-height: 24px;
  margin: 15px 0 25px 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_tech_home:hover h5{
  color: var(--secondo);
}

.storia_home{
  position: relative;
  padding: 0;
  overflow: visible;
}

.storia_home .storia_01{
  background: #FBFBFB;
  background: -webkit-linear-gradient(180deg, rgba(251, 251, 251, 1) 90%, rgba(247, 247, 247, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(251, 251, 251, 1) 90%, rgba(247, 247, 247, 1) 100%);
  background: linear-gradient(180deg, rgba(251, 251, 251, 1) 90%, rgba(247, 247, 247, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FBFBFB", endColorstr="#F7F7F7", GradientType=0);
  overflow: visible;
}

.storia_home .storia_02{
  background: #F0F0F0;
  background: -webkit-linear-gradient(180deg, rgba(240, 240, 240, 1) 90%, rgba(233, 233, 233, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(240, 240, 240, 1) 90%, rgba(233, 233, 233, 1) 100%);
  background: linear-gradient(180deg, rgba(240, 240, 240, 1) 90%, rgba(233, 233, 233, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F0F0F0", endColorstr="#E9E9E9", GradientType=0);
  overflow: visible;
}


.box_storia_home{
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
    // Fallback
    @supports not (aspect-ratio: 1 / 1) {
    &::before {
      float: left;
      padding-top: 100.00%;
      content: "";
    }

    &::after {
      display: block;
      content: "";
      clear: both;
    }
  }
}

.box_storia_home p{
  padding: 0 30px;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.box_storia_home h4{
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  color: var(--secondo);
  margin-bottom: 30px;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.box_storia_home:hover h4{
  color: var(--bianco);
}

.box_storia_home:hover p{
  color: var(--bianco);
}

.box_storia_home::before{
  content: "";
  display: block;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-image: url(../img/sfondo_storia.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  box-shadow: rgba(212, 0, 15, 0.30) 0px 2px 4px 0px, rgba(212, 0, 15, 0.70) 0px 2px 16px 0px;
}

.box_storia_home:hover::before{
  opacity: 1;
  transform: translateY(0px);
}

.news_home{
  position: relative;
  text-align: center;
}

a.box_news_home{
  position: relative;
  display: inline-block;
  width: 100%;
}

a.box_news_home img{
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0.5;
}

a.box_news_home:hover img{
  opacity: 1;
}

a.box_news_home h5{
  position: relative;
  z-index: auto;
  font-size: 24px;
  color: var(--grigio-testo);
  font-weight: 600;
  line-height: 24px;
  margin: 15px 0 25px 0;
  min-height: 48px;
  height:auto !important;
  height: 48px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.box_news_home:hover h5{
  color: var(--secondo);
}

a.box_news_home p{
  position: relative;
}

a.box_news_home p::before{
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--secondo);
  bottom:-20px;
  left: 50%;
  transform: translateX(-25px);
}

.contatti_home{
  position: relative;
  text-align: center;
  background: #D4000F;
  background: -webkit-linear-gradient(180deg, rgba(212, 0, 15, 1) 0%, rgba(212, 0, 15, 1) 80%, rgba(182, 0, 6, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(212, 0, 15, 1) 0%, rgba(212, 0, 15, 1) 80%, rgba(182, 0, 6, 1) 100%);
  background: linear-gradient(180deg, rgba(212, 0, 15, 1) 0%, rgba(212, 0, 15, 1) 80%, rgba(182, 0, 6, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#D4000F", endColorstr="#B60006", GradientType=0);
}

.contatti_home h4.title-section{
  color: var(--bianco);
}

.contatti_home h4.title-section::before{
  background-color: var(--bianco);
}

.contatti_home h3.label-section{
  color: var(--bianco);
}

.contatti_home p{
  color: var(--bianco);
}

.form-contatti_home{
  position: relative;
}

.form-contatti_home input{
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--trasp);
  color: var(--bianco);
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--bianco);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.form-contatti_home input::-webkit-input-placeholder,
.form-contatti_home textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 16px;
  line-height: 24px;
  color: var(--bianco);
}
.form-contatti_home input::-moz-placeholder,
.form-contatti_home textarea::-moz-placeholder { /* Firefox 19+ */
  font-size: 16px;
  line-height: 24px;
  color: var(--bianco);
}
.form-contatti_home input:-ms-input-placeholder,
.form-contatti_home textarea:-ms-input-placeholder { /* IE 10+ */
  font-size: 16px;
  line-height: 24px;
  color: var(--bianco);
}
.form-contatti_home input:-moz-placeholder,
.form-contatti_home textarea:-moz-placeholder { /* Firefox 18- */
  font-size: 16px;
  line-height: 24px;
  color: var(--bianco);
}

.form-contatti_home textarea{
  position: relative;
  width: 100%;
  background-color: var(--trasp);
  color: var(--bianco);
  border-radius: 0;
  border: 1px solid var(--bianco);
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.form-contatti_home input:focus,
.form-contatti_home textarea:focus{
    color: var(--bianco);
    background-color: var(--trasp);
    border-color: var(--terzo);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0, 0, 0, .0);
}

.form-contatti_home button{
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: var(--bianco);
  letter-spacing: 2px;
  font-weight: 700;
  padding: 15px 30px;
  background-color: var(--trasp);
  border:1px solid var(--bianco);
  border-radius: 2px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.form-contatti_home button:hover{
  background-color: var(--bianco);
  border:1px solid var(--bianco);
  color: var(--secondo);
}

.footer_home{
  position: absolute;
  left: 0;
  bottom:0;
  z-index: 99;
  width: 100%;
  text-align: left;
}

.footer_home p{
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: var(--nero);
}

.footer_home p a:link,
.footer_home p a:visited{
  color: var(--nero);
  position: relative;
}

.footer_home p a:hover{
  color: var(--primo);
}

.footer_home p a::before{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--nero);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.footer_home p a:hover::before{
  width: 0%;
}

.footer_home p a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.footer_home p a:hover::after{
  width: 100%;
}

.footer-bottom{
  position: relative;
  background-color: var(--primo);
}

.footer-16 {
  position: relative;
  z-index: 2;
  background: var(--bianco);
  color: var(--grigio-testo);
  font-size: 1rem;
  padding: 8rem 0 0 0;
  border-top: 1px solid var(--grigio);
}

.footer-16 .footer-main {
  margin-bottom: 0rem;
  min-height: 36rem;
  height:auto !important;
  height: 36rem;
}

.footer-16 .footer-bottom {
    padding: 2rem 0;
}

.footer-16 .footer-bottom .legal-links .credits {
    font-size: 14px;
    color: var(--bianco);
    margin-left: 8px;
    padding-left: 24px;
    border-left: 1px solid var(--bianco);
}

.footer-16 .footer-bottom .copyright p{
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  color: var(--bianco);
}

.footer-16 .footer-bottom .copyright p a:link,
.footer-16 .footer-bottom .copyright p a:visited{
  position: relative;
  color: var(--bianco);
}

.footer-16 .footer-bottom .copyright p a:hover{
  color: var(--bianco);
}

.footer-16 .footer-bottom .copyright p a::before{
  content: "";
  position: absolute;
  bottom:-4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--bianco);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer-16 .footer-bottom .copyright p a:hover::before{
  width: 0%;
  background-color: var(--grigio);
}

.footer-16 .footer-bottom .copyright p a::after{
  content: "";
  position: absolute;
  display: block;
  bottom:-4px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--bianco);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.footer-16 .footer-bottom .copyright p a:hover::after{
  width: 100%;
}



.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--primo);
  margin-right: 12px;
  margin-top: 0;
  flex-shrink: 0;
}

.footer-16 .brand-section .brand-description {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--grigio-testo);
    font-weight: 300;
    max-width: 100%;
    margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item{
  font-size: 1rem;
  line-height: 2rem!important;
  color: var(--grigio-testo);
}

.footer-16 .brand-section .contact-info .contact-item a:link,
.footer-16 .brand-section .contact-info .contact-item a:visited{
  position: relative;
  color: var(--grigio-testo);
}

.footer-16 .brand-section .contact-info .contact-item a:hover{
  color: var(--primo);
}

.footer-16 .brand-section .contact-info .contact-item a::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer-16 .brand-section .contact-info .contact-item a:hover::before{
  width: 0%;
}

.footer-16 .brand-section .contact-info .contact-item a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.footer-16 .brand-section .contact-info .contact-item a:hover::after{
  width: 100%;
}

.footer .social-links{
  width: 100%;
  padding-top: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--grigio);
}

.footer .social-links a:link i,
.footer .social-links a:visited i{
  font-size: 18px;
  color: var(--grigio-testo);
  margin-right: 12px;
  margin-top: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer .social-links a:hover i{
  color: var(--primo);
}

.footer h6{
  font-size: 20px!important;
  line-height: 20px!important;
  color: var(--primo)!important;
  margin-bottom: 1.25rem!important;
  /*text-transform: uppercase;*/
  letter-spacing: 0px!important;
  font-weight: 400!important;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif!important;
  min-height: 40px;
  height:auto !important;
  height: 40px;
}

.footer-16 .nav-column .footer-nav a {
    color: var(--grigio-testo);
    display: inline-block;
    width: auto;
    position: relative;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    font-weight: 300;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.footer-16 .nav-column .footer-nav a:hover {
    color: var(--primo);
    transform: translateX(0px);
}

.footer-16 .nav-column .footer-nav a::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer-16 .nav-column .footer-nav a:hover::before{
  width: 0%;
}

.footer-16 .nav-column .footer-nav a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.footer-16 .nav-column .footer-nav a:hover::after{
  width: 100%;
}

.footer-16 .nav-column .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-16 .nav-column .footer-nav .footer-nav-1{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 4px 0 0 8px;
    list-style: none;
}

.footer-16 .nav-column .footer-nav .footer-nav-1 a{
  font-size: 0.7rem;
  line-height: 1.05rem;
}

.footer-16 .nav-column .footer-nav .footer-nav-1 .footer-nav-2{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 4px 0 0 8px;
    list-style: none;
}

.footer-16 .nav-column .footer-nav .footer-nav-1 .footer-nav-2 a{
  font-size: 0.6rem;
  line-height: 0.9rem;
}

.footer-16 .nav-column .footer-nav li{
  position: relative;
  padding: 0 0 0 16px;
}

.footer-16 .nav-column .footer-nav li::before{
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--primo);
  display: block;
  position: absolute;
  top:8px;
  left: 0;
}

.footer-16 .nav-column .footer-nav li .footer-nav-1 li::before{
  width: 6px;
  height: 6px;
  background-color: var(--nero);
  top:10px;
}

.footer-16 .nav-column .footer-nav li .footer-nav-1 li .footer-nav-2 li::before{
  width: 4px;
  height: 4px;
  background-color: var(--primo);
  top:12px;
}

.menu-footer-accordion{
  position: relative;
}

.menu-footer-accordion a.menu-footer-accordion_toggler img{
  position: relative;
  margin-bottom: 1.25rem;
  width: 100%;
  filter: grayscale(1) opacity(0.4);
  -webkit-transition: all 1.5s ease-out;
  -moz-transition: all 1.5s ease-out;
  -o-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.menu-footer-accordion:hover a.menu-footer-accordion_toggler img{
  filter: grayscale(0) opacity(1);
}

.menu-footer-accordion .menu-footer-accordion_body {
  position: relative;
  overflow: hidden;
  height: auto;
  height: 0rem;
  -webkit-transition: all 1.5s ease-out;
  -moz-transition: all 1.5s ease-out;
  -o-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.menu-footer-accordion:hover .menu-footer-accordion_body {
  height: 21rem;
}
/*.footer-bottom::before{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 436px;
  height: 605px;
  background-image: url(../img/decorazione_footer.png);
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}*/

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}

.scroll-top {
  background-color: var(--bianco);
  border:1px solid var(--primo);

}

.scroll-top i {
  font-size: 1.5rem;
  color: var(--primo);
  line-height: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.scroll-top:hover {
  background-color: var(--primo);
  border:1px solid var(--primo);
}

.scroll-top:hover i {
  color: var(--bianco);
}

.page-title{
  position: relative;
  background-color: var(--bianco);
  padding-top:0;
  margin-top: 137px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title .heading {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    height:auto !important;
    height: 400px;
}

.page-title h1 {
    font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
    position: relative;
    z-index: auto;
    /*font-style: italic;*/
    /*color: var(--primo);*/
    color: var(--grigio-testo);
    font-size: 3rem!important;
    line-height: 3rem!important;
    margin: 0;
    padding: 0;
    font-weight: 700!important;
    margin-bottom: 1rem;
}

/*.page-title h1.product-title {
    color: var(--grigio-testo);
}*/

.page-title h2{
    font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
    position: relative;
    z-index: auto;
    color: var(--grigio-testo);
    font-size: 1.1rem!important;
    line-height: 1.6rem!important;
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
}

.page-title p{
    position: relative;
    z-index: auto;
    color: var(--grigio-testo);
    font-size: 1rem!important;
    line-height: 1.5rem!important;
    margin: 0;
    padding: 0;
    font-weight: 400;
    /*text-align: justify;*/
}


.bread-fixed{
  position: fixed;
  top:87px;
  height: auto;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  /*-webkit-animation: bread-anim 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: bread-anim 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
}

/*@-webkit-keyframes bread-anim {
  0% {
    opacity: 0;
    transform: translateY(-29px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bread-anim {
  0% {
    opacity: 0;
    transform: translateY(-29px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}*/

nav.breadcrumbs{
  padding:0.4rem 0;
  /*background-color: var(--bianco-trasp-3);*/
  background: #E60012;
  background: -webkit-linear-gradient(90deg, rgba(230, 0, 18, 1) 0%, rgba(245, 153, 160, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(230, 0, 18, 1) 0%, rgba(245, 153, 160, 1) 100%);
  background: linear-gradient(90deg, rgba(230, 0, 18, 1) 0%, rgba(245, 153, 160, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E60012", endColorstr="#F599A0", GradientType=1);
}

nav.breadcrumbs ol{
  font-size: 0.7rem;
  line-height: 0.7rem;
  color: var(--bianco);
  text-transform: uppercase;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav.breadcrumbs ol li+li {
    padding-left: 10px;
}

nav.breadcrumbs ol li+li::before {
    content: ">";
    display: inline-block;
    padding-right: 10px;
    color: var(--grigio);
    font-weight: 900;
}

nav.breadcrumbs ol li a:link,
nav.breadcrumbs ol li a:visited{
  position: relative;
  font-size: 0.7rem;
  line-height: 0.7rem;
  color: var(--bianco);
  text-transform: uppercase;
}

nav.breadcrumbs ol li a:hover{
  color: var(--grigio);
}

nav.breadcrumbs ol li a::before{
  content: "";
  position: absolute;
  bottom:0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--bianco);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

nav.breadcrumbs ol li a:hover::before{
  width: 0%;
}

nav.breadcrumbs ol li a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--grigio);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
nav.breadcrumbs ol li a:hover::after{
  width: 100%;
}

.blocco-evidenza{
  position: relative;
  width: 100%;
  margin-top: 64px;
  height: auto;
  padding: 0px 64px 64px 64px;
  text-align: center;
  border-radius: 40px;
  background: #D4000F;
  background: -webkit-linear-gradient(180deg, rgba(212, 0, 15, 1) 0%, rgba(212, 0, 15, 1) 80%, rgba(182, 0, 6, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(212, 0, 15, 1) 0%, rgba(212, 0, 15, 1) 80%, rgba(182, 0, 6, 1) 100%);
  background: linear-gradient(180deg, rgba(212, 0, 15, 1) 0%, rgba(212, 0, 15, 1) 80%, rgba(182, 0, 6, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#D4000F", endColorstr="#B60006", GradientType=0);
}

.blocco-evidenza h3{
  position: relative;
  font-size: 46px;
  line-height: 46px;
  color: var(--bianco);
  font-weight: 300;
  margin-top: 64px;
}

.blocco-evidenza h3 strong{
  /*font-weight: 500;*/
  font-weight: 700;
}

.blocco-evidenza p{
  position: relative;
  font-size: 24px;
  line-height: 36px;
  color: var(--bianco);
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.blocco-evidenza p strong{
  font-weight: 700;
}

a.cta-big:link,
a.cta-big:visited{
  position: absolute;
  top:128px;
  left:64px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  background-color: var(--secondo);
  border-radius: 50%;
  padding: 64px;
  overflow: hidden;
  box-shadow: rgba(212, 0, 15, 0.3) 0px 2px 4px 0px, rgba(212, 0, 15, 0.6) 0px 2px 16px 0px;
}

a.cta-big:hover{
  box-shadow: rgba(212, 0, 15, 0) 0px 2px 4px 0px, rgba(212, 0, 15, 0) 0px 2px 16px 0px;
}

a.cta-big p{
  position: relative;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--bianco);
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 2;
}

a.cta-big::before{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-image: url(../img/big-cta_arrow.png);
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a.cta-big:hover::before{
  transform: translateX(118px);
}

/*.blocco-testo_preview{
  min-height: 500px;
  height:auto !important;
  height: 500px;
}*/

.fascia-scheda-prodotto{
  position: relative;
  display: flex;
  align-items: center!important;
  padding-top: 0rem;
  padding-bottom: 4rem;
}

.fascia-scheda-prodotto-2{
  position: relative;
  display: flex;
  align-items: flex-start!important;
  padding-top: 0rem;
  padding-bottom: 4rem;
}

.fascia-scheda-prodotto-3{
  position: relative;
  display: flex;
  align-items: flex-end!important;
  padding-top: 0rem;
  padding-bottom: 4rem;
}

.fascia-scheda-prodotto:last-child{
  padding-bottom: 0rem;
}

.fascia-scheda-prodotto .blocco-testo img{
  position: relative;
  margin-bottom: 2rem;
}

.sbalzo{
  margin-top: 8rem;
}

.intro-prodotti{
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.blocco-testo h3{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  display: inline-block;
  color: var(--grigio-testo);
  font-size: 2.4rem;
  line-height: 2.4rem;
  padding: 0;
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.blocco-testo h3 strong{
  font-weight: bolder;
  font-style: italic;
}

/*.blocco-testo h2::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--secondo);
  bottom:-5px;
  left: 0;
}*/

.blocco-testo h4{
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  color: var(--grigio-testo);
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 0;
  margin: 0 0 2rem 0;
  font-weight: 300;
}

.blocco-testo h4 span{
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: var(--primo);
  font-style: italic;
}

.blocco-testo h5,
.blocco-testo h3.tit-bullet,
.blocco-testo h4.tit-bullet{
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  color: var(--grigio-testo);
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 0 0 0 2rem;
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.blocco-testo h5 strong,
.blocco-testo h3.tit-bullet strong,
.blocco-testo h4.tit-bullet strong{
  /*font-weight: 500;*/
  font-weight: 700;
}

.blocco-testo h5::before,
.blocco-testo h3.tit-bullet::before,
.blocco-testo h4.tit-bullet::before{
  content:"";
  display: block;
  position: absolute;
  top:6px;
  left: 0;
  /*width: 21px;
  height: 21px;
  background-image: url(../img/pallino_lista.png);*/
  width: 16px;
  height: 16px;
  background-color: var(--primo);
  /*background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;*/
}

.blocco-testo p{
  position: relative;
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0;
  margin: 0 0 30px 0;
  font-weight: 300;
  text-align: justify;
}

.blocco-testo.no-justify p{
  text-align: left;
}

.blocco-testo ul{
  position: relative;
  margin:0;
  padding:0;
  font-size: 1rem;
  line-height: 1.5rem;
  list-style: none;
  font-weight: 300;
}

.blocco-testo ul li{
  position: relative;
  padding: 0 0 0 2rem;
  margin: 0 0 2rem 0;
  /*text-align: justify;*/
  text-align: left;
}

.blocco-testo ul li::before{
  content:"";
  display: block;
  position: absolute;
  top:8px;
  left: 0;
  /*width: 21px;
  height: 21px;
  background-image: url(../img/pallino_lista.png);*/
  width: 16px;
  height: 16px;
  background-color: var(--primo);
  /*background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;*/
}

.blocco-testo.intro-prodotti h4{
  padding-left: 2rem;
}

.blocco-testo.intro-prodotti h4::before{
  content:"";
  display: block;
  position: absolute;
  top:8px;
  left: 0;
  /*width: 21px;
  height: 21px;
  background-image: url(../img/pallino_lista.png);*/
  width: 16px;
  height: 16px;
  background-color: var(--primo);
  /*background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;*/
}

.blocco-testo.intro-prodotti ul li::before{
  content:"";
  display: block;
  position: absolute;
  top:8px;
  left: 8px;
  /*width: 21px;
  height: 21px;
  background-image: url(../img/pallino_lista.png);*/
  width: 8px;
  height: 8px;
  background-color: var(--grigio-testo);
  /*background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;*/
}

.img-margin{
  margin-bottom: 4rem;
}

p.nota_sx{
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

p.nota_center{
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

p.nota_dx{
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.img-column{
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  border:1px solid var(--secondo);
}

.grey-back_01{
  background-color: var(--grigio-back);
  /*background-image: url(../img/back_grey_01.jpg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 40%;*/
}

.grey-back_02{
  background-color: var(--grigio-back);
  /*background-image: url(../img/back_grey_02.jpg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 40%;*/
}

.tabella_modelli{
  position: relative;
  padding: 0;
  margin: 0 0 60px 0;
  width: 100%
}

.tabella_modelli thead tr{
  border-bottom: 1px solid var(--primo);
}

.tabella_modelli tbody tr,
.tabella_specifiche tbody tr{
  border-bottom: 1px solid var(--grigio-testo);
}

.tabella_modelli tbody tr:last-child,
.tabella_specifiche tbody tr:last-child{
  border-bottom: 0px;
}

.tabella_modelli tr th{
  position: relative;
  font-size: 16px;
  line-height: 16px;
  padding: 20px;
  /*font-weight: 500;*/
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  vertical-align: top;
}

.tabella_specifiche tr th{
  position: relative;
  font-size: 16px;
  line-height: 16px;
  padding: 20px;
  /*font-weight: 500;*/
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  vertical-align: top;
}

.tabella_modelli tr td{
  position: relative;
  font-size: 16px;
  line-height: 16px;
  padding: 20px;
  font-weight: 300;
  text-align: left;
  vertical-align: top;
}

.tabella_specifiche tr td{
  position: relative;
  font-size: 20px;
  line-height: 20px;
  padding: 20px 0;
  width: 64%;
  font-weight: 300;
  text-align: left;
  vertical-align: top;
}

.icon_letter{
  position: relative;
  display: inline-block;
  height: 100%;
  width: 6rem;
  text-indent: -9999px;
  background-image: url(../img/i_icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.icon_letter_2{
  position: relative;
  display: inline-block;
  height: 100%;
  width: 1.5rem;
  text-indent: -9999px;
  background-image: url(../img/i_icon_3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/*.box_product_home:hover .icon_letter_2{
  filter: brightness(0) invert(1);
}*/

.img_dx_bottom{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 42%;
  height: 100%;
  top:0;
  right: 0;
  z-index: 1;
}

.img_dx_bottom_small{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 33%;
  height: 100%;
  top:0;
  right: 0;
  z-index: 1;
}

.img_dx_bottom img,
.img_dx_bottom_small img{
  position: relative;
  width: 100%;
  opacity: 1;
}

.img_dx_bottom img.img_back,
.img_dx_bottom_small img.img_back{
  position: relative;
  width: 100%;
  opacity: 0.4;
}

.img_sx_bottom{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 42%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
}

.img_sx_bottom_small{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 33%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
}

.img_sx_bottom img,
.img_sx_bottom_small img{
  position: relative;
  width: 100%;
  opacity: 1;
}

.img_sx_bottom img.img_back,
.img_sx_bottom_small img.img_back{
  position: relative;
  width: 100%;
  opacity: 0.4;
}

.img_dx_top{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 42%;
  height: 100%;
  top:0;
  right: 0;
  z-index: 1;
}

.img_dx_top_small{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33%;
  height: 100%;
  top:0;
  right: 0;
  z-index: 1;
}

.img_dx_top img,
.img_dx_top_small img{
  position: relative;
  width: 100%;
  opacity: 1;
}

.img_dx_top img.img_back,
.img_dx_top_small img.img_back{
  position: relative;
  width: 100%;
  opacity: 0.4;
}

.img_sx_top{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 42%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
}

.img_sx_top_small{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
}

.img_sx_top img,
.img_sx_top_small img{
  position: relative;
  width: 100%;
  opacity: 1;
}

.img_sx_top img.img_back,
.img_sx_top_small img.img_back{
  position: relative;
  object-fit: cover;
  opacity: 0.4;
}

.img_sx{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.img_sx img{
  position: relative;
  /*object-fit: cover;*/
  width: 100%;
  opacity: 1;
  z-index: 1;
}

.img_sx img.img_back{
  opacity: 0.4;
}

.img_sx.back_white::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
  background: -moz-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
}

.img_sx.back_grey::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #EEEEEE;
  background: -webkit-linear-gradient(270deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 90%);
  background: -moz-linear-gradient(270deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 90%);
  background: linear-gradient(270deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=0);
}

.img_dx{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
  top:0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

.img_dx img{
  position: relative;
  /*object-fit: cover;*/
  width: 100%;
  opacity: 1;
  z-index: 1;
}

.img_dx img.img_back{
  opacity: 0.4;
}

.img_dx img.img_back_2{
  opacity: 1;
}

.img_dx.back_grey::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #EEEEEE;
  background: -webkit-linear-gradient(90deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 70%);
  background: -moz-linear-gradient(90deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 70%);
  background: linear-gradient(90deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=1);
}

.img_dx.back_white::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);
}

.product_info{
  position: relative;
  background-color: var(--bianco);
  text-align: center;
  padding-top: 0rem;
  padding-bottom: 3.75rem;
}

/*.product_info h6{
  font-family: "Open Sans", sans-serif;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: italic;
  position: relative;
  color: var(--grigio-testo);
  font-size: 2rem;
  line-height: 3rem;
  padding: 0;
  margin: 0;
  font-weight: 300;
}

.product_info .icon_letter_2{
  filter: brightness(0) invert(1);
  background-image: url(../img/i_icon.png);
}

.product_info a:link,
.product_info a:visited{
  position: relative;
  color: var(--grigio-testo);
}

.product_info a:hover{
  position: relative;
  color: var(--primo);
}

.product_info a::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.product_info a:hover::before{
  width: 0%;
}

.product_info a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.product_info a:hover::after{
  width: 100%;
}

.img-sx_product_info{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
}

.img-sx_product_info img{
  position: relative;
  width: 100%;
  z-index: 1;
}

.img-sx_product_info::before{
  content: "";
  display: block;
  position: absolute;
  top:0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #EEEEEE;
  background: -webkit-linear-gradient(90deg, rgba(238, 238, 238, 0) 70%, rgba(238, 238, 238, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(238, 238, 238, 0) 70%, rgba(238, 238, 238, 1) 100%);
  background: linear-gradient(90deg, rgba(238, 238, 238, 0) 70%, rgba(238, 238, 238, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=1);
  z-index: 2;
}*/

.contact_info{
  position: relative;
  background-color: var(--grigio);
  text-align: center;
  padding: 2rem 0;
}

.contact_info h6{
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: italic;
  position: relative;
  color: var(--grigio-testo);
  font-size: 1.4rem;
  line-height: 2.1rem;
  padding: 0;
  margin: 0;
  font-weight: 300;
}

.contact_info a:link,
.contact_info a:visited{
  position: relative;
  color: var(--grigio-testo);
}

.contact_info a:hover{
  position: relative;
  color: var(--primo);
}

.contact_info a::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.contact_info a:hover::before{
  width: 0%;
}

.contact_info a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.contact_info a:hover::after{
  width: 100%;
}

.img-dx_contact_info{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 100%;
  top:0;
  right: 0;
  z-index: 1;
}

.img-dx_contact_info img{
  position: relative;
  width: 100%;
  z-index: 1;
}

.img-dx_contact_info::before{
  content: "";
  display: block;
  position: absolute;
  top:0;
  left: 0;
  width: 40%;
  height: 100%;
  background: #f7f7f7;
  background: -webkit-linear-gradient(90deg, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 0) 100%);
  background: linear-gradient(90deg, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f7f7", endColorstr="#f7f7f7", GradientType=1);
  z-index: 2;
}

/* TIMELINE */

.timeline{
  position: relative;
  z-index: 1;
}

.timeline .page-title,
.timeline #about_01,
.timeline #contact_info {
  position: relative;
  z-index: 3;
}

.timeline::before{
  top: 0;
  bottom: 0;
  position: absolute;
  content: "";
  width: 0px;
  background-color: var(--trasp);
  border: 0.5px dashed var(--grigio-testo);
  left: 50%;
  height: 0%;
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
}

.scrolled .timeline::before{
  opacity: 0.3;
  height: 100%;
}

.timeline:after {
  top: 0;
  bottom: 0;
  position: fixed;
  content: "";
  width: 1px;
  background-color: var(--primo);
  border-radius: 3px;
  left: 50%;
  height: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 1.6s ease-out;
  -moz-transition: all 1.6s ease-out;
  -o-transition: all 1.6s ease-out;
  transition: all 1.6s ease-out;
}

.scrolled .timeline:after {
  height: 80vh;
  opacity: 1;
}

.timeline-badge{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  top:0;
  left: calc(50% - 2.5rem);
  border: 1px solid var(--primo);
  background-color: var(--bianco);
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.timeline-badge h6{
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: var(--primo);
  margin: 0;
  padding: 0;
  font-weight: bolder;
  font-style: italic;
}

.timeline-badge.active{
  opacity: 1;
  transform: scale(1);
}

.timeline-panel h3,
.timeline-panel-2 h3,
.timeline-panel-img h3{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: italic;
  min-height: 4.5rem;
  height:auto !important;
  height: 4.5rem;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.timeline-panel{
  opacity: 0;
  transform: translateX(-120px);
  -webkit-transition: all 2s ease-out 0.4s;
  -moz-transition: all 2s ease-out 0.4s;
  -o-transition: all 2s ease-out 0.4s;
  transition: all 2s ease-out 0.4s;
}

.timeline-panel.active{
  opacity: 1;
  transform: translateX(0px);
}

.timeline-panel-2{
  opacity: 0;
  transform: translateX(120px);
  -webkit-transition: all 2s ease-out 0.8s;
  -moz-transition: all 2s ease-out 0.8s;
  -o-transition: all 2s ease-out 0.8s;
  transition: all 2s ease-out 0.8s;
}

.timeline-panel-2.active{
  opacity: 1;
  transform: translateX(0px);
}

.timeline-panel img,
.timeline-panel-2 img{
  position: relative;
  margin-bottom: 2rem;
}

/* FINE TIMELINE */

/* FORM */

.form-control {
    display: block;
    width: 100%;
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--grigio-testo);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--trasp);
    background-clip: padding-box;
    border: 1px solid var(--grigio-testo);
    border-top:0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.form-control:focus {
    color: var(--grigio-testo);
    background-color: var(--trasp);
    border-color: var(--primo);
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.form-contatti button,
form.form-contatti input[type="submit"],
form.wpcf7-form input[type="submit"] {
  position: relative;
  font-size: 1rem!important;
  line-height: 1rem!important;
  color: var(--grigio-testo)!important;
  font-weight: 300!important;
  padding: 1rem 1rem!important;
  background-color: var(--trasp)!important;
  text-transform: uppercase!important;
  text-align: center!important;
  display: inline-block!important;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border: 0px!important;
}

form.form-contatti button:hover,
form.form-contatti input[type="submit"]:hover,
form.wpcf7-form input[type="submit"]:hover{
  color: var(--primo)!important;
}

form.form-contatti button::before,
form.form-contatti input[type="submit"]::before,
form.wpcf7-form input[type="submit"]::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--trasp);
  border: 0px!important;
  border-bottom: 1px solid var(--primo)!important;
  bottom:0%;
  left: 0%;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

form.form-contatti button span,
form.form-contatti input[type="submit"] span,
form.wpcf7-form input[type="submit"] span{
  position: relative;
  z-index: 2;
}

form.form-contatti button:hover::before,
form.form-contatti input[type="submit"]:hover::before,
form.wpcf7-form input[type="submit"]:hover::before{
  height: 100%!important;
  border-top: 1px solid var(--primo)!important;
  border-left: 1px solid var(--primo)!important;
  border-right: 1px solid var(--primo)!important;
  border-bottom: 1px solid var(--primo)!important;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    border: 0px!important;
}

.wpcf7 .wpcf7-submit:disabled::before {
  border-bottom: 1px solid var(--grigio-testo)!important;
}

form.form-contatti p,
form.wpcf7-form p {
  margin-bottom: 0!important;
}
 
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.form-control {
    height: 200px;
}

.form-control-check {
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
}

.form-control-check .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
    width: 50%;
    padding-left: 0px;
    margin-left: 0px;
}

@media screen and (max-width: 767px) {
    .form-control-check .wpcf7-list-item {
        width: 100%;
    }
}

.wpcf7-list-item, .wpcf7-acceptance .wpcf7-list-item label {
  margin-left: 0px;
  padding-left: 0px;
}

.consenso{
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.consenso p{
  position: relative;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.consenso input{
  margin-top: 0.3rem;
  margin-right: 0.8rem;
}

.form-contatti label{
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.form-contatti select{
  position: relative;
  width: 100%;
  padding: 1rem;
  padding-top: calc(1rem + 2px);
  padding-bottom: calc(1rem + 2px);
  font-size: 1rem;
  line-height: 1.5rem;
  border: 1px solid var(--grigio-testo);
  color: var(--grigio-testo);
  border-radius: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.form-contatti input[type=date]{
  position: relative;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  border: 1px solid var(--grigio-testo);
  color: var(--grigio-testo);
  border-radius: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

/* FINE FORM */

#contacts_02{
  padding: 2rem 0;
}

.contatti-icone{
  position: relative;
  padding-top: 4rem;
}

.contatti-icone .col-lg-3{
  text-align: center;
}

.contatti-icone .col-lg-3 p{
  color: var(--grigio-testo);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
}

.contatti-icone .col-lg-3 i{
  position: relative;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primo);
}

.contatti-icone .col-lg-3 a:link,
.contatti-icone .col-lg-3 a:visited{
    color: var(--grigio-testo);
    display: inline-block;
    width: auto;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.contatti-icone .col-lg-3 a:hover {
    color: var(--primo);
    transform: translateX(0px);
}

.contatti-icone .col-lg-3 a::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.contatti-icone .col-lg-3 a:hover::before{
  width: 0%;
}

.contatti-icone .col-lg-3 a::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.contatti-icone .col-lg-3 a:hover::after{
  width: 100%;
}

/* MAPPA */

.mappa{
  position:relative;
  margin: 0;
  padding: 0;
}

#map{
  display: block;
  position: relative;
  width: 100%;
  height: 600px;
}

#map_business{
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh - 87px);
}

#map_gruppo{
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh - 87px);
}

.leaflet-tile-pane {
  -webkit-filter: grayscale(20%)!important;
  filter: grayscale(20%)!important;
}

.leaflet-popup-content h4{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  font-size: 20px;
  line-height: 20px;
  color: var(--primo);
  margin-bottom: 10px;
  text-transform: uppercase;
  /*letter-spacing: 1px;*/
  font-weight: 400;
}
.leaflet-popup-content p{
  font-size: 14px;
  line-height: 21px;
  color: var(--grigio-testo);
  font-weight: 400;
  max-width: 100%;
  margin: 0 0 10px 0;
}

.leaflet-container a.contact-dis:link,
.leaflet-container a.contact-dis:visited{
  position: relative;
  font-size: 12px;
  line-height: 18px;
  color: var(--grigio-testo);
  text-transform: uppercase;
}

.leaflet-container a.contact-dis:hover{
  color: var(--primo);
}

.leaflet-container a.contact-dis::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:-2px;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.leaflet-container a.contact-dis:hover::before{
  width: 0%;
}

.leaflet-container a.contact-dis::after{
  content: "";
  position: absolute;
  display: block;
  bottom: -2px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.leaflet-container a.contact-dis:hover::after{
  width: 100%;
}

/* FINE MAPPA */

/* COUNTER */

.structure{
  position: relative;
  padding: 6rem 0;
}

.counter-wrapper,
.photo-wrapper {
  /*display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;*/
  justify-content: center;
}
.counter {
  background-color: var(--bianco);
  border: 1px solid var(--grigio-testo);
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  aspect-ratio: 1/1;
    // Fallback
    @supports not (aspect-ratio: 1/1) {
    &::before {
      float: left;
      padding-top: 100%;
      content: "";
    }

    &::after {
      display: block;
      content: "";
      clear: both;
    }
  }
}

.counter:hover {
  transform: translateY(-1rem);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background-color: var(--primo);
  border: 1px solid var(--primo);
}

.counter-number {
  color: var(--primo);
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  display: block;
  display: inline;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.counter:hover .counter-number{
  color: var(--bianco);
}

.counter-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 0.8rem;
  color: var(--grigio-testo);
  text-transform: uppercase;
  font-weight: 400;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.counter:hover .counter-text{
  color: var(--bianco);
}

.counter h3{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  display: inline-block;
  color: var(--primo);
  font-size: 1.6rem;
  line-height: 1.6rem;
  padding: 0;
  margin: 0 0 1rem 0;
  font-weight: 400;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.counter:hover h3{
  color: var(--bianco);
}

/* FINE COUNTER */

/* STAFF */

.staff{
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

.staff h4{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  display: inline-block;
  color: var(--primo);
  font-size: 1.25rem;
  line-height: 1.25rem;
  padding: 0;
  margin: 1rem 0 0.6rem 0;
  font-weight: 400;
}

/* FINE STAFF */

/* PRIVACY POLICY */

.blocco-testo_privacy h2{
  font-family: "Open Sans", sans-serif;
  position: relative;
  display: inline-block;
  color: var(--grigio-testo);
  font-size: 3rem;
  line-height: 3rem;
  padding: 0;
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.blocco-testo_privacy h2 strong{
  font-weight: bolder;
  font-style: italic;
}


.blocco-testo_privacy h3{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  color: var(--grigio-testo);
  font-size: 1.4rem;
  line-height: 2.1rem;
  padding: 0;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.blocco-testo_privacy h4{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  color: var(--grigio-testo);
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 0 0 0 2rem;
  margin: 0 0 2rem 0;
  font-weight: 700;
}

.blocco-testo_privacy h4::before{
  display: none;
}

.blocco-testo_privacy p{
  position: relative;
  color: var(--grigio-testo);
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 0;
  margin: 0 0 30px 0;
  font-weight: 300;
}

.blocco-testo_privacy ul{
  position: relative;
  margin:0;
  padding:0;
  font-size: 20px;
  line-height: 30px;
  list-style: none;
  font-weight: 300;
}

.blocco-testo_privacy ul li{
  position: relative;
  padding: 0 0 0 2rem;
  margin: 0 0 2rem 0;
}

.blocco-testo_privacy ul li::before{
  content:"";
  display: block;
  position: absolute;
  top:8px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--primo);
}

.blocco-testo_privacy a:link,
.blocco-testo_privacy a:visited{
  position: relative;
  color: var(--grigio-testo);
}

.blocco-testo_privacy a:hover{
  color: var(--primo);
}

.blocco-testo_privacy a::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--grigio-testo);
  bottom:-2px;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.blocco-testo_privacy a:hover::before{
  width: 0%;
}

.blocco-testo_privacy a::after{
  content: "";
  position: absolute;
  display: block;
  bottom:-2px;
  right: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primo);
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
.blocco-testo_privacy a:hover::after{
  width: 100%;
}

/* FINE PRIVACY POLICY */

p.paragraph_intro{
  position: relative;
  z-index: auto;
  text-align: center;
  padding: 0;
  margin-bottom: 4rem;
}

/* Sticky image nelle sezioni product-parallax */
@media (min-width: 992px) {
  .product-parallax .row {
    align-items: flex-start; /* fondamentale: NON stretch */
  }

  .product-parallax .col-img-sticky {
    position: sticky;
    top: 100px; /* distanza dall'alto durante lo scroll — adatta al tuo header */
    align-self: flex-start;
  }
}

.modal-header h2{
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  color: var(--primo);
  font-size: 2.4rem;
  line-height: 2.4rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
}



/* STILE PER MOBILE */

@media (min-width: 320px) {
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media only screen and (max-height: 720px) {
}

@media only screen and (min-width: 1920px) {
}

@media only screen and (min-width: 1720px) {
}

@media only screen and (max-width: 1720px) {
}

@media only screen and (max-width: 1680px) {
}

@media only screen and (max-width: 1500px) {
}

@media only screen and (max-width: 1400px) {
  a.box_product_home .dida_product_home{
    top: calc(100% - 7.5rem);
  }
}

@media only screen and (max-width: 1300px) {
}

@media only screen and (max-width: 1280px) {
  .slide__header h1{
    padding: 1.5rem 0rem;
    font-size: 3rem;
    line-height: 3rem;
  }

  .slide__header h2{
    padding: 1.5rem 0rem;
    font-size: 3rem;
    line-height: 3rem;
  }

  .slide__header p{
    padding: 1.5rem 0rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .slides-nav {
    left: -2rem!important;
  }

  .slide__header h1,
  .slide__header h2,
  .slide__header p,
  .slide__header .cta-frame{
    width: 75%;
  }

  .page-title .heading {
      min-height: 300px;
      height:auto !important;
      height: 300px;
  }

  .page-title h1 {
      font-size: 2rem!important;
      line-height: 2rem!important;
      margin-bottom: 1rem;
  }

  .page-title h2{
      font-size: 1.1rem!important;
      line-height: 1.4rem!important;
      margin-bottom: 1rem;
  }

  .page-title p{
      font-size: 1em!important;
      line-height: 1.5rem!important;
  }

  nav.breadcrumbs ol{
    font-size: 0.6rem;
    line-height: 0.6rem;
  }

  nav.breadcrumbs ol li a:link,
  nav.breadcrumbs ol li a:visited{
    font-size: 0.6rem;
    line-height: 0.6rem;
  }

  .blocco-testo h3{
    font-size: 2rem;
    line-height: 2rem;
    margin: 0 0 1rem 0;
  }

  .blocco-testo h4{
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0 0 1rem 0;
  }

  .blocco-testo p{
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0 0 30px 0;
  }

  .blocco-testo ul{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .blocco-testo ul li{
    padding: 0 0 0 2rem;
    margin: 0 0 2rem 0;
  }

  .img_sx img{
    width: auto;
    height: 100%;
  }

  .img_dx img{
    width: auto;
    height: 100%;
  }

  #europe_02 .img_sx img,
  #europe_03 .img_sx img{
    width: 100%;
    height: auto;
  }

  #europe_02 .img_dx img,
  #europe_03 .img_dx img{
    width: 100%;
    height: auto;
  }

  .timeline-panel h3,
  .timeline-panel-2 h3,
  .timeline-panel-img h3{
    min-height: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  a.box_product_home .dida_product_home h3{
    font-size: 1.6rem;
    line-height: 1.6rem;
}
}

@media only screen and (max-width: 1239px) {
}

@media only screen and (max-width: 1199px) {
  .menu__box {
    width: 50%;
    height: 100vh;
    margin: 0;
    padding: 8rem 2rem 2rem 2rem;
  }
  .counter-number {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }

  .counter-text {
    font-size: 0.6rem;
    line-height: 0.6rem;
  }

  .counter h3{
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin: 0 0 0.4rem 0;
  }
  a.box_product_home .dida_product_home{
    top: calc(100% - 6.2rem);
  }
}

@media only screen and (max-width: 1043px) {
}

@media only screen and (max-height: 910px) {
}

@media only screen and (max-width: 991px) {
  section, .section {
    padding: 6rem 0 24rem 0;
  }

  #europe_01, #europe_01.section,
  #europe_04, #europe_04.section,
  .product.section {
    padding: 6rem 0 2rem 0;
  }

  .product.section {
    padding: 6rem 0 6rem 0;
  }

  .product.section.product_info{
    padding: 0 0 6rem 0;
  }

  .img_sx{
    width: 100%;
    height: 22rem;
    bottom:0;
    top:auto;
    left: 0;
    z-index: 1;
    overflow: hidden;
  }

  .img_dx{
    width: 100%;
    height: 22rem;
    bottom:0;
    top:auto;
    left: 0;
    z-index: 1;
    overflow: hidden;
  }

  .img_dx.back_grey::after{
    background: #EEEEEE;
    background: -webkit-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=1);
  }

  .img_dx.back_white::after{
    background: #FFFFFF;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);
  }

  .img_sx.back_white::after{
    background: #FFFFFF;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
  }

  .img_sx.back_grey::after{
    background: #EEEEEE;
    background: -webkit-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=0);
  }
  .img_sx img{
    width: 100%;
    height: auto;
  }

  .img_dx img{
    width: 100%;
    height: auto;
  }

  .sbalzo{
    margin-top: 0rem;
  }

  .timeline::before{
    display: none;
  }

  .timeline:after {
    display: none;
  }

  .timeline-badge{
    width: 3rem;
    height: 3rem;
    left: -2rem;
    top: -2.5rem;
  }

  .timeline-badge h6{
    font-size: 1rem;
    line-height: 1rem;
  }

  .timeline-panel{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--primo);
  }

  .timeline-panel h5{
    margin-bottom: 0;
  }
  a.box_product_home .dida_product_home{
    top: calc(100% - 7.2rem);
  }
}

@media only screen and (max-width: 820px) {
  .header .logo img {
    max-height: 2rem;
  }

  .slide__figure,
  .slide-sx .slide__figure{
    z-index: 7;
    position: absolute;
    top:50%;
    bottom:0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 50%;
    width: 100%;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
  }

  .slide__figure::before,
  .slide-sx .slide__figure::before{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: #FFFFFF;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);
    z-index: 2;
  }

  .footer_home {
    background-color: var(--bianco-trasp);
  }

  .footer_home p {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .slide__header h1,
  .slide__header h2,
  .slide__header p,
  .slide__header .cta-frame{
    width: 100%;
  }

  .slide-sx .slide__header h1,
  .slide-sx .slide__header h2,
  .slide-sx .slide__header p,
  .slide-sx .slide__header .cta-frame{
    width: 100%;
    margin-left: 0%;
  }

  .slide__header {
    justify-content: flex-start;
    padding-top: 8rem;
  }

  .slides-nav {
    font-size: 1rem;
    right: -1rem!important;
    left: auto!important;
  }
  .menu__box {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 8rem 2rem 2rem 2rem;
  }
}

@media only screen and (max-width: 767px) {
  a.box_news{
    margin-bottom: 2rem;
  }

  a.box_product_home .dida_product_home{
    top: calc(50% + 2.5rem);
  }
}

@media only screen and (max-width: 620px) {
}

@media only screen and (max-width: 575px) {

  p {
    font-size: 0.8rem;
    line-height: 1.2rem;
}

  .slide__header h1{
    padding: 1rem 0rem;
    font-size: 2rem;
    line-height: 2rem;
  }

  .slide__header h2{
    padding: 1rem 0rem;
    font-size: 2rem;
    line-height: 2rem;
  }

  .slide__header p{
    padding: 1rem 0rem;
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  .slide__header {
    justify-content: flex-start;
    padding-top: 5rem;
  }
  .slide__header .cta-frame{
    padding: 1rem 0rem;
  }
  .header .topbar{
    display: none!important;
  }

  .page-title{
    margin-top: 87px;
  }

  .header .logo img {
    max-height: 1.2rem;
  }

  a.cta:link,
  a.cta:visited{
    font-size: 0.8rem;
    line-height: 0.8rem;
    padding: 0.8rem 0.8rem;
  }

  a.cta:hover{
    color: var(--primo);
  }

  .slides-nav {
    font-size: 0.7rem;
  }

  .menu__btn {
    top: 0.5rem;
    width: 3rem;
    height: 3rem;
  }
  .menu__btn > span::before {
    content: '';
    top: -6px;
  }
  .menu__btn > span::after {
    content: '';
    top: 6px;
  }

  .menu__box nav.nav-menu ul li a:link,
  .menu__box nav.nav-menu ul li a:visited{
    padding: 0.5rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .menu__box nav.nav-menu ul li.dropdown a i{
    margin-top: -7px;
  }
  .menu__box nav.nav-menu ul li.dropdown ul li a:link,
  .menu__box nav.nav-menu ul li.dropdown ul li a:visited{
    padding: 0.5rem;
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
  .menu__box {
    padding: 4rem 2rem 2rem 2rem;
  }

  section, .section {
    padding: 4rem 0 16rem 0;
  }

  .page-title .heading {
      min-height: 300px;
      height:auto !important;
      height: 300px;
  }

  .page-title h1 {
      font-size: 1.5rem!important;
      line-height: 1.5rem!important;
      margin-bottom: 0.5rem;
  }

  .page-title h2{
      font-size: 1rem!important;
      line-height: 1.2rem!important;
      margin-bottom: 0.5rem;
  }

  .page-title p{
      font-size: 0.8rem!important;
      line-height: 1.2rem!important;
  }

  nav.breadcrumbs ol{
    font-size: 0.5rem;
    line-height: 0.5rem;
  }

  nav.breadcrumbs ol li a:link,
  nav.breadcrumbs ol li a:visited{
    font-size: 0.5rem;
    line-height: 0.5rem;
  }

  .blocco-testo h3{
    font-size: 1.6rem;
    line-height: 1.6rem;
    margin: 0 0 1rem 0;
  }

  .blocco-testo p{
    font-size: 0.8rem;
    line-height: 1.2rem;
    margin: 0 0 15px 0;
  }

  .blocco-testo ul{
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  .blocco-testo ul li{
    padding: 0 0 0 2rem;
    margin: 0 0 1rem 0;
  }

  .blocco-testo.intro-prodotti ul li::before{
    top:6px;
    left: 8px;
  }

  .img_sx{
    width: 100%;
    height: 14rem;
    bottom:0;
    top:auto;
    left: 0;
    z-index: 1;
    overflow: hidden;
  }

  .img_dx{
    width: 100%;
    height: 14rem;
    bottom:0;
    top:auto;
    left: 0;
    z-index: 1;
    overflow: hidden;
  }

  .img_dx.back_grey::after{
    background: #EEEEEE;
    background: -webkit-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=1);
  }

  .img_dx.back_white::after{
    background: #FFFFFF;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);
  }

  .img_sx.back_white::after{
    background: #FFFFFF;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
  }

  .img_sx.back_grey::after{
    background: #EEEEEE;
    background: -webkit-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: -moz-linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 0) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EEEEEE", endColorstr="#EEEEEE", GradientType=0);
  }

  .footer-16 .footer-bottom {
    padding: 0 0;
  }

  .footer-16 .footer-bottom .copyright p{
    font-size: 0.8rem;
    line-height: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .scroll-top.active {
    bottom: 64px;
  }

  .footer-16{
    padding: 4rem 0 0 0;
  }

  .footer-16 .brand-section{
    margin-bottom: 0;
  }

  .footer-16 .brand-section .logo{
    justify-content:center;
  }

  .footer-16 .brand-section .brand-description {
      font-size: 0.8rem;
      line-height: 1.2rem;
  }

  .footer-16 .brand-section .contact-info .contact-item{
    font-size: 0.8rem;
    line-height: 1.6rem!important;
  }

  .footer h6{
    font-size: 15px!important;
    line-height: 15px!important;
    margin-bottom: 1rem!important;
    min-height: 20px;
    height:auto !important;
    height: 20px;
  }

  .blocco-testo h5,
  .blocco-testo h3.tit-bullet,
  .blocco-testo h4.tit-bullet{
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0 0 1.2rem;
  }

  .blocco-testo h5::before,
  .blocco-testo h3.tit-bullet::before,
  .blocco-testo h4.tit-bullet::before{
    top:6px;
    width: 12px;
    height: 12px;
  }

  .staff h4{
    font-size: 1rem;
    line-height: 1rem;
  }

  a.box_product_home .dida_product_home h3 {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }

    .blocco-testo h4{
      font-size: 0.8rem;
      line-height: 1.2rem;
    }

    .blocco-testo.intro-prodotti h4::before{
      top: 6px;
      width: 12px;
      height: 12px;
    }

    .cta-container{
      flex-direction: column;
    }

    .cta-container .cta{
      margin: 0 0 1rem 0;
    }
}

@media only screen and (max-width: 559px) {
}

@media only screen and (max-width: 479px) {
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {

}

@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 812px)
  and (orientation: landscape) {
}

/* FINE STILI PER MOBILE */

.box_news i {
    display: none!important;
}

.dida_news h5::before {
  background-color: transparent!important;
}

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

.box-paginazione a, .box-paginazione span {
    text-align: center;
    font-size: 15px;
}

.box-paginazione a, .box-paginazione span {
    text-align: center;
    font-size: 16px;
    width: 28px;
    display: inline-table;
    padding-top: 4px;
    border-bottom: 1px solid var(--grigio);
    background-color: var(--gr);
}

.box-paginazione a:hover {
    color: var(--primo)!important;
    border-bottom: 1px solid var(--primo);

}

a.box_news .img-frame img {
    margin-bottom: 0px;
}

@media screen and (min-width: 992px) {

    .graph {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
}


/* Policy */

.blocco-testo_privacy h3 ~ p, 
.blocco-testo_privacy h3 ~ table {
    margin-left: 25px;
}
 
.blocco-testo_privacy h3 ~ ul {
    margin-left: 28px;
}