/* Fonts */
:root {
  --font-default: "Fira Sans", serif;
  --font-titoli: "Poppins", serif;
}

/*
font-family: "Fira Sans", serif;
font-family: "Poppins", serif;
*/

/* ***** Palette colori * *****/

:root {
 --primo: #133C55;
 --secondo: #386FA4;
 --terzo: #59A5D8;
 --quarto: #84D2F6;
 --quinto: #91E5F6;
 --nero: #000000;
 --bianco: #ffffff;
 --trasp: rgba(0, 0, 0, 0);
 --bianco-trasp: rgba(255, 255, 255, 0.8);
 --nero-trasp: rgba(0, 0, 0, 0.4);
 --grigio: #f2f2f2;
}

body {
  font-family: var(--font-default);
  font-weight: 300;
  overflow-x: hidden;
  font-size: 20px;
  line-height: 30px;
  color: var(--nero);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-titoli);
  font-weight: 800;
  color: var(--nero);
}

.site-nav {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--trasp);
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: var(--font-default);
  border-bottom: 1px solid var(--trasp);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-nav.fixed-header{
  background-color: var(--bianco-trasp);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grigio);
}

.site-nav .site-navigation{
  position: relative;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav .site-navigation .logo img{
  position: relative;
  z-index: auto;
  width: auto;
  max-height: 100px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-nav .site-navigation .logo img.logo_bianco{
  opacity: 1;
}

.site-nav.fixed-header .site-navigation .logo img.logo_bianco{
  opacity: 0;
}

.site-nav .site-navigation .logo img.logo_colore{
  position: absolute;
  top:0;
  left: 0;
  opacity: 0;
}

.site-nav.fixed-header .site-navigation .logo img.logo_colore{
  opacity: 1;
}

.site-nav .site-navigation .site-menu > li > a{
  position: relative;
  z-index: auto;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--bianco);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-nav.fixed-header .site-navigation .site-menu > li > a{
  color: var(--nero);
}

.site-nav .site-navigation .site-menu > li > a::before{
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  bottom:0;
  left: 0;
  height: 3px;
  /*background-color: var(--quarto);*/
  background: rgb(145,229,246);
  background: -moz-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.site-nav .site-navigation .site-menu > li > a:hover::before{
  width: 100%;
}

.site-nav .site-navigation .site-menu > li > a:hover{
  color: var(--quarto);
}

.site-nav .site-navigation .site-menu > li > a::after{
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  bottom:2px;
  left: 0;
  height: 3px;
  background-color: var(--bianco);
  -webkit-transition: .7s all ease .3s;
  -o-transition: .7s all ease .3s;
  transition: .7s all ease .3s;
}

.site-nav .site-navigation .site-menu > li > a:hover::after{
  width: 100%;
}

.site-nav .site-navigation .site-menu > li.active > a::before,
.site-nav .site-navigation .site-menu > li.active > a::after{
  width: 100%;
}

.site-nav .site-navigation .site-menu > li.active > a{
  color: var(--quarto);
}

.site-nav.fixed-header .site-navigation .site-menu > li.active > a{
  color: var(--secondo);
}

.site-nav.fixed-header .site-navigation .site-menu > li > a::after{
  background-color: var(--secondo);
}

.site-nav.fixed-header .site-navigation .site-menu > li > a:hover{
  color: var(--secondo);
}

.hero{
  position: relative;
  background-size: cover;
  background-position: center center;
}

.hero::before{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--nero-trasp);
  z-index: 1;
}

.hero .container{
  position: relative;
  z-index: 2;
}

.slider-hero{
  position: relative;
  z-index: auto;
  width: 100%;
  height: 100vh;
}

.slider-hero .owl-stage-outer{
  position: relative;
  height: 100vh;
}

.slider-hero .owl-stage-outer .owl-stage{
  position: relative;
  height: 100vh;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item{
  position: relative;
  height: 100vh;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item{
  background-color: #df0000;
  position: relative;
  height: 100vh;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container-img{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  z-index: 1
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container-img::before{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container-img::after{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  background-image: url(../images/back_img_hero.png);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top:140px;
  padding-bottom: 140px;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row{
  width: 100%;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container-img img{
  position: relative!important;
  transform: scale(1) translate(0%, 0%);
  object-fit: cover;
  height: 100%;
  z-index: 1;
  -webkit-animation: scale-up-center 8s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate-reverse both;
	        animation: scale-up-center 8s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate-reverse both;
}


.hero.overlay:before, .bg-image.overlay:before {
  display: none;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.0.5);
  }
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero{
  position: relative;
  padding: 0 0 0 40px;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero::before{
  content: "";
  position: absolute;
  display: block;
  z-index: auto;
  top:0;
  left: 0;
  /*background-color: var(--quarto);*/
  background: rgb(145,229,246);
  background: -moz-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
  width: 10px;
  height: 0%;
  -webkit-transition: 8s all ease;
  -o-transition: 8s all ease;
  transition: 8s all ease;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero::after{
  content: "";
  position: absolute;
  display: block;
  z-index: auto;
  top:0;
  left: 5px;
  background-color: var(--bianco);
  width: 10px;
  height: 0%;
  -webkit-transition: 7s all ease 1s;
  -o-transition: 7s all ease 1s;
  transition: 7s all ease 1s;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item.active .item .container .row .blocco-testo-hero::before,
.slider-hero .owl-stage-outer .owl-stage .owl-item.active .item .container .row .blocco-testo-hero::after{
  height: 100%;
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero h2{
  position: relative;
  z-index: auto;
  font-size: 50px;
  font-size: 50px;
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--bianco);
  -webkit-transition: 1s all ease 1s;
  -o-transition: 1s all ease 1s;
  transition: 1s all ease 1s;
  opacity: 0;
  transform: translateX(20px);
}

.slider-hero .owl-stage-outer .owl-stage .owl-item.active .item .container .row .blocco-testo-hero h2{
  opacity: 1;
  transform: translateX(0px);
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero h1{
  position: relative;
  z-index: auto;
  font-size: 90px;
  line-height: 90px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 80px;
  color: var(--bianco);
  -webkit-transition: 1s all ease 1.5s;
  -o-transition: 1s all ease 1.5s;
  transition: 1s all ease 1.5s;
  opacity: 0;
  transform: translateX(20px);
}

.slider-hero .owl-stage-outer .owl-stage .owl-item.active .item .container .row .blocco-testo-hero h1{
  opacity: 1;
  transform: translateX(0px);
}

.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta{
  position: relative;
  -webkit-transition: 1s all ease 2s;
  -o-transition: 1s all ease 2s;
  transition: 1s all ease 2s;
  opacity: 0;
  transform: translateX(20px);
}

.slider-hero .owl-stage-outer .owl-stage .owl-item.active .item .container .row .blocco-testo-hero .cont-cta{
  opacity: 1;
  transform: translateX(0px);
}

/*.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta{
  position: relative;
  z-index: auto;
  display: inline-block;
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
  font-family: var(--font-default);
  font-weight: 300;
  color: var(--bianco);
  border: 2px solid var(--bianco);
  text-transform: uppercase;
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

/*.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta:hover{
  border: 2px solid var(--trasp);
}

/*.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta span{
  position: relative;
  z-index: 3;
}

./*slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta::before{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--secondo);
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

/*.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta::after{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 0%;
  /*background-color: var(--quarto);*/
  background: rgb(145,229,246);
  background: -moz-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
  -webkit-transition: .7s all ease .3s;
  -o-transition: .7s all ease .3s;
  transition: .7s all ease .3s;
}

/*.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta:hover::before{
  height: 100%;
}

/*.slider-hero .owl-stage-outer .owl-stage .owl-item .item .container .row .blocco-testo-hero .cont-cta*/ .cta:hover::after{
  height: 100%;
}

.subheading {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 36px;
  color: var(--terzo);
  letter-spacing: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 20px;
}

.section-title h2 {
  text-transform: uppercase!important;
  font-size: 60px!important;
  line-height: 60px!important;
  font-weight: 800!important;
  color: var(--primo)!important;
  margin-bottom: 60px!important;
}

.bg-light {
    background-color: var(--grigio) !important;
}

.section{
  position: relative!important;
  overflow: hidden!important;
  padding-top: 7rem!important;
  padding-bottom: 7rem!important;
}

.section.section-sx::before{
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/back_section_sx.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -40px 0;
  opacity: 0.1;
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.section.section-dx::before,
.site-footer.section-dx::before{
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/back_section_dx.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 40px 0;
  opacity: 0.1;
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.section.section-sx:hover::before{
  background-position: 0 0;
  opacity: 0.5;
}

.section.section-dx:hover::before{
  background-position: 0 0;
  opacity: 0.5;
}

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

.cta-section{
  position: relative;
  z-index: auto;
  display: inline-block;
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
  font-family: var(--font-default);
  font-weight: 300;
  color: var(--secondo);
  border: 2px solid var(--secondo);
  text-transform: uppercase;
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.cta-section:hover{
  border: 2px solid var(--trasp);
  color: var(--bianco);
}

.cta-section span{
  position: relative;
  z-index: 3;
}

.cta-section::before{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--secondo);
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.cta-section::after{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 0%;
  /*background-color: var(--terzo);*/
  background: rgb(145,229,246);
  background: -moz-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
  -webkit-transition: .7s all ease .3s;
  -o-transition: .7s all ease .3s;
  transition: .7s all ease .3s;
}

.cta-section:hover::before{
  height: 100%;
}

.cta-section:hover::after{
  height: 100%;
}

.cta-small{
  position: relative;
  z-index: auto;
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--font-default);
  font-weight: 300;
  color: var(--secondo);
  border: 2px solid var(--secondo);
  text-transform: uppercase;
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.cta-small:hover{
  border: 2px solid var(--trasp);
  color: var(--bianco);
}

.cta-small span{
  position: relative;
  z-index: 3;
}

.cta-small::before{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--secondo);
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.cta-small::after{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 0%;
  /*background-color: var(--terzo);*/
  background: rgb(145,229,246);
  background: -moz-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
  -webkit-transition: .7s all ease .3s;
  -o-transition: .7s all ease .3s;
  transition: .7s all ease .3s;
}

.cta-small:hover::before{
  height: 100%;
}

.cta-small:hover::after{
  height: 100%;
}

.section-contact{
  margin-top: 0!important;
  background: rgb(145,229,246);
  background: -moz-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
}

.section-contact h2{
  font-size: 60px;
  line-height: 60px;
  color: var(--bianco);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-contact p{
  color: var(--bianco);
  margin-bottom: 40px;
}

.service h3, .service .h3 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondo);
}

.service p {
  color: var(--nero);
  margin-bottom: 40px;
}

/* MAPPA */

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

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

.no-padding{
  padding: 0;
}

/* FINE MAPPA */

.site-footer .container{
  position: relative;
  z-index: 2;
}

.site-footer {
  position: relative;
  font-size: 16px;
  color: var(--nero);
  padding: 70px 0;
  overflow: hidden;
}

.widget img{
  max-width: 200px;
  margin-bottom: 40px;
}

.site-footer h2{
  font-size: 32px;
  font-weight: 800;
  color: var(--primo);
  margin: 0;
  padding: 0;
  text-transform:uppercase;
}

.site-footer .widget h3, .site-footer .widget .h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--secondo);
}

.site-footer .widget .links {
    width: 100%;
}

.site-footer .social li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--secondo);
  border-radius: 50%;
  color: var(--bianco)!important;
  border:1px solid var(--trasp);
}

.site-footer .social li a:hover {
  background: var(--bianco);
  color: var(--secondo)!important;
  border:1px solid var(--secondo);
}

.site-footer a {
  color: var(--nero);
  position: relative;
  display: inline-block;
  position: relative;
}

.site-footer a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: auto;
  height: 1px;
  width: 100%;
  bottom:0;
  left: 0;
  background-color: var(--nero);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-footer a:hover::before {
  width: 0%;
}

.site-footer a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: auto;
  height: 2px;
  width: 0%;
  bottom:0;
  right: 0;
  background-color: var(--secondo);
  -webkit-transition: .2s all ease .1s;
  -o-transition: .2s all ease .1s;
  transition: .2s all ease .1s;
}

.site-footer a:hover::after {
  width: 100%;
}

.site-footer a:hover {
  color: var(--secondo);
}

/* PAGINA AZIENDA */

.heading-2 {
  position: relative;
  font-size: 90px;
  line-height: 90px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-titoli);
  margin: 180px 0 120px 0;
  text-transform: uppercase;
  padding: 0 0 0 40px;
}

.heading-2::before{
  content: "";
  position: absolute;
  display: block;
  z-index: auto;
  top:0;
  left: 0;
  /*background-color: var(--quarto);*/
  background: rgb(145,229,246);
  background: -moz-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(0deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
  width: 10px;
  -webkit-animation: title-animation 8s ease both;
	        animation: title-animation 8s ease both;
}

.heading-2::after{
  content: "";
  position: absolute;
  display: block;
  z-index: auto;
  top:0;
  left: 5px;
  background-color: var(--bianco);
  width: 10px;
  -webkit-animation: title-animation 7s ease 1s both;
	        animation: title-animation 7s ease 1s both;
}

@-webkit-keyframes title-animation {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes title-animation {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

.cont{
  position: relative;
  z-index: auto;
  margin-bottom: 80px;
}

.cont-title, .cont-title h2{
  text-transform: uppercase;
  font-size: 60px;
  line-height: 60px;
  font-weight: 800;
  color: var(--primo);
  margin-bottom: 60px;
}

.box-offerta{
  position: relative;
  z-index: auto;
  /* width: 100%; */
  height: auto;
  text-align: center;
}

.box-offerta{
  position: relative;
  z-index: auto;
  /* width: 100%; */
  height: auto;
  text-align: center;
  /* padding: 20px 15%; */
}

.box-offerta h3{
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--primo);
}

.box-offerta h3 strong{
  display: inline-block;
  color: var(--bianco);
  font-weight: 800;
  padding: 0px 10px;
  background: rgb(145,229,246);
  background: -moz-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
}

.box-offerta .icon-frame{
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.box-offerta .icon-frame::before{
  content: "";
  display: block;
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(145,229,246);
  background: -moz-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
}

.box-offerta .icon-frame img{
  position: relative;
  max-width: 200px;
  height: auto;
}

.owl-carousel-marchi a img{
  position: relative;
  width: 100%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  filter: grayscale(1);
  transform: scale(0.95);
}

.owl-carousel-marchi a:hover img{
  filter: grayscale(0);
  transform: scale(1);
}

/* FINE PAGINA AZIENDA */

/* PAGINA SERVIZI */

.lista{
  position: relative;
  z-index: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lista li{
  position: relative;
  z-index: auto;
  padding-top: 10px;
  padding-left: 60px;
  margin-bottom: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--primo);
}

.lista li::before{
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top:0;
  left: 0;
  background-image: url(../images/icon_list.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.lista-prodotti{
  position: relative;
  z-index: auto;
}

.lista-prodotti a, .lista-prodotti .gallery-item {
  position: relative;
  display: flex;
  background-color: var(--bianco);
  border: 1px solid var(--grigio);
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  margin: 10px;
  width: 23%!important;
  margin-right: 2%!important;
  padding: 0px!important;;
    // Fallback
    @supports not (aspect-ratio: 1/1) {
    &::before {
      float: left;
      padding-top: 100.00%;
      content: "";
    }
    &::after {
      display: block;
      content: "";
      clear: both;
    }
  }
}

.gallery-icon img {
  border:0px!important;
  padding: 2%!important;
}

.lista-prodotti a img, .lista-prodotti .gallery-item img {
  position: relative;
  width: 100%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  filter: grayscale(1);
  transform: scale(0.95);
}

.lista-prodotti a:hover img, .lista-prodotti .gallery-item:hover img{
  filter: grayscale(0);
  /* transform: scale(1); */
}

.cont-subtitle, .cont-subtitle h3{
  text-transform: uppercase;
  font-size: 36px;
  line-height: 36px;
  font-weight: 800;
  color: var(--secondo);
  margin-bottom: 40px;
}

/* FINE PAGINA SERVIZI */

/* PAGINA CONTATTI */

.box-contatti{
  position: relative;
  z-index: auto;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 20px 15%;
}

.box-contatti h3{
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--primo);
}

.box-contatti .icon-frame{
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.box-contatti .icon-frame::before{
  content: "";
  display: block;
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(145,229,246);
  background: -moz-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  background: linear-gradient(-90deg, rgba(145,229,246,1) 0%, rgba(56,111,164,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#91e5f6",endColorstr="#386fa4",GradientType=1);
}

.box-contatti .icon-frame img{
  position: relative;
  max-width: 200px;
  height: auto;
}

.form_label{
  color: var(--secondo);
  font-weight: 800;
}

.form-contact .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--grigio);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.form-divider{
  position: relative;
  z-index: auto;
  width: 100%;
  height: 1px;
  background-color: var(--grigio);
  margin-bottom: 30px;
}

.radio-form{
  padding-bottom: 6px;
}

.form-group input,
.form-group textarea{
  font-size: 20px;
  line-height: 30px;
  color: var(--nero);
  font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color: var(--primo);
}

.form-group input:focus{
  border-bottom: 1px solid var(--terzo);
}

.submit-btn{
  position: relative;
  z-index: auto;
  display: inline-block;
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
  margin-top: 40px;
  font-family: var(--font-default);
  font-weight: 300;
  color: var(--secondo);
  background-color: var(--trasp);
  border: 2px solid var(--secondo);
  text-transform: uppercase;
  -webkit-transition: 1s all ease;
  -o-transition: 1s all ease;
  transition: 1s all ease;
}

.submit-btn:hover{
  border: 2px solid var(--trasp);
  color: var(--bianco);
  background-color: var(--secondo);
}

form h6{
  color: var(--secondo);
}

form a {
  color: var(--nero);
  position: relative;
  display: inline-block;
  position: relative;
}

form a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: auto;
  height: 1px;
  width: 100%;
  bottom:0;
  left: 0;
  background-color: var(--nero);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

form a:hover::before {
  width: 0%;
}

form a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: auto;
  height: 2px;
  width: 0%;
  bottom:0;
  right: 0;
  background-color: var(--secondo);
  -webkit-transition: .2s all ease .1s;
  -o-transition: .2s all ease .1s;
  transition: .2s all ease .1s;
}

form a:hover::after {
  width: 100%;
}

form a:hover {
  color: var(--secondo);
}

/* FINE PAGINA CONTATTI */


.form-contact {
  background-color: var(--grigio);
  padding: 25px;
}

.form-contact input[type='text'],
.form-contact input[type='tel'],
.form-contact input[type='email'] {
  background-color: var(--bianco)!important;
  border-bottom: 1px solid var(--primo)!important;
}

.form-contact textarea {
  height: 150px!important;
  background-color: var(--bianco)!important;
  border-bottom: 1px solid var(--primo)!important;
}

span.wpcf7-list-item.first,
span.wpcf7-list-item.second {
  width: 50%;
  margin-left: 0px;
}

span.wpcf7-list-item {
  margin-left: 0px;
}


/* ottimizzazione mobile */

@media screen AND (max-height: 768px) {
  .v-h-full {
    min-height: auto;
  }

  .blocco-testo-hero h1 {
    font-size: 60px!important;
    line-height: 60px!important;
    margin-bottom: 20px!important;
  }

  .blocco-testo-hero h2 {
    margin-bottom: 20px!important;
    font-size: 40px!important;
  }

  .slider-hero .owl-stage-outer .owl-stage .owl-item .item .container {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    align-items: center;
  }

}
@media screen AND (max-width: 1400px) {

  .service h3 {
    height: 50px;
  }

  .service p {
    height: 172px;
  }

}

@media screen AND (max-width: 1024px) {
  .slider-hero .owl-stage-outer .owl-stage .owl-item .item .container {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    align-items: center;
  }

  .cont-title, .cont-title h2 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 30px;
 }

 .mb-5 {
  margin-bottom: 20px!important;
 }

 .cont-title, .cont-title h2 {
  font-size: 50px!important;
  line-height: 50px!important;
  margin-bottom: 30px!important;
}

}

@media screen AND (max-width: 991px) {

  .service h3, .service p {
    height: unset!important;
  }

  .fixed-header .burger.light:before, 
  .fixed-header .burger.light span, 
  .fixed-header .burger.light:after {
    background: var(--primo)!important;
  }

  .site-mobile-menu .site-nav-wrap > li > a {
    padding-left: 20px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 50px !important;
    line-height: 50px !important;
    margin-bottom: 40px !important;
 }

 .service h3, .service .h3 {
  margin-bottom: 20px;
  font-size: 24px;
 }

 .section-contact h2 {
  font-size: 50px;
  line-height: 50px;
 }

 .section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
 }
 
.cont-title, .cont-title h2 {
  font-size: 40px !important;
  line-height: 40px !important;
  margin-bottom: 20px !important;
}

.cont-subtitle, .cont-subtitle h3 {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 0px;
}

  h1.heading-2 {
      font-size: 50px!important;
  }
  
  .box-offerta .icon-frame img {
    width: 70% !important;
 }
 
 .box-offerta h3 {
    font-size: 20px;
    line-height: 28px;
 }
 
 .section-contact h2 {
    font-size: 50px;
    line-height: 50px;
}

}


@media screen AND (max-width: 768px) {

  .site-nav .site-navigation .logo img {
    max-height: 70px;
  }

  .site-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .blocco-testo-hero h1 {
    font-size: 50px !important;
    line-height: 50px !important;
    margin-bottom: 20px !important;
  }

  .blocco-testo-hero h2 {
    margin-bottom: 20px !important;
    font-size: 30px !important;
  }

  .v-h-full {
    height: auto;
    min-height: auto;
    padding-top: 0;
  }


}