.no_desk {
  display: none;
}

body {
  font-size: 0.9vw;
}

.intro_sec {
  top: 0 !important
}

.back_dark_menu {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 999999999;
  top: 0;
  left: 0;
  transition: all 0.2s ease-out;
  opacity: 0;
  pointer-events: none;
}

.back_dark_visible {
  opacity: 1 !important;
  pointer-events: all !important;
}

.blur_attivo {
  transition: all 0.2s ease-out;
  filter: blur(6px);
}

/*animazione titoli*/
.anispa {
  opacity: 0;
}

.animate_h1 span {
  width: 100%;
  /*  float: left;*/
  -webkit-clip-path: polygon(0% 50%, 100% 100%, 100% 100%,0% 100%);
  clip-path: polygon(0% 50%, 100% 100%, 100% 100%,0% 100%);
  transform: translateY(-50px);
  opacity: 0;
}

.animate_h1 span {
  /*animation-delay: 0.6s;*/
  -webkit-animation-fill-mode: forwards;
}

@keyframes titleAnimation {
  0% {
      transform: translateY(-50px);
      opacity: 0;
      -webkit-clip-path: polygon(0% 50%, 100% 100%, 100% 100%,0% 100%);
      clip-path: polygon(0% 50%, 100% 100%, 100% 100%,0% 100%);
      /*
-webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  */
  }

  100% {
      transform: translateY(0);
      opacity: 1;
      /*
-webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  */
      -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%,0% 100%);
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%,0% 100%);
  }
}

.animate_h1 p {
  transition: all 0.5s linear;
  opacity: 0;
}

.animate_h1 .visible p {
  opacity: 1 ;
}


header {
  width: 100%;
  position: fixed;
  /* padding: 2vh 3.5vw; */
  z-index: 99999;
}



#sottomenu_veicoli {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  background: #fff;
  z-index: 9999;
  padding: 10vh 0 2vh 0;
  pointer-events: auto;
}

#sottomenu_veicoli .wrap_sottomenu {
  max-width: 90%;
  margin: 0 auto;
  padding: 0vh 0 2vh 0;
}

.veicoli_menu{
  width: 80%;
	margin:0 auto;
}

.tit_sottomenu{
  width: 20%;
  border-right: 1px solid #ccc;
  text-align: center;
  min-height: 20vh;
}

.tit_sottomenu h1{font-size: 120%;text-align: center;text-transform: uppercase;color: var(--colore-primario);}


.box_veicoli_menu{
  display: block;
  width: 15%;
  text-align: center;
  color: #000;
}

.img_box_veicoli_menu{
  width: 100%;
  height: 12vh;
  background-repeat: no-repeat;
  background-size: auto 85%;
  background-position: center center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: 
    background-size 0.5s ease,
    transform 0.5s ease;
}

.img_box_veicoli_menu:hover{
  background-size: auto 100%;
  transform: scale(1.02);
}


.golf_car{
  background-image: url(../images/sottomenu/golf_car.png);
}

.trasporto_persone{
  background-image: url(../images/sottomenu/trasporto.png);
}

.merci_bag{
  background-image: url(../images/sottomenu/merci.png);
}

.omologati{
  background-image: url(../images/sottomenu/omologati.png);
  background-size: auto 95%;
}

.allestimenti{
  background-image: url(../images/sottomenu/allestimenti.png);
}

.industriali{
  background-image: url(../images/sottomenu/industriali.png);
}

.box_veicoli_menu h1{
  font-size: 80%;
  text-align: center;
  text-transform: uppercase;
  color: var(--txt-black);
  position: relative;
  display: inline-block;
}

.box_veicoli_menu:hover h1{
color: var(--colore-primario);
}


.box_veicoli_menu h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -4px;
  width: 100%;           
  height: 3px;          
  background: var(--colore-primario);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}


.box_veicoli_menu:hover h1::after {
  transform: scaleX(1);
  transform-origin: left;
}




.shrink {
  transition: all 0.2s linear;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255,255,255,0.9);
  padding: 0 0 0vh 0;
  transition: all 0.2s linear;
}

.logo img{
  height: 9vh;
  padding-top: 3vh;
  padding-left: 4vw;
  transition: all 0.2s linear;
}

.shrink .logo img{
  height: 8vh;
  padding: 1.5vh 6vw;
  margin-top: 0.5vh;
}

:root {
  --colore-primario: #235716;
  --txt-black: #222;
  --txt-white: #fff;
}

/*
.menu{
  padding: 2.5vh 1vw 2vh 1vw;
  margin-top: 2vh;
}


.menu a{
  text-decoration: none;
  color: var(--txt-white);
  display: block;
  padding: 0 0.8vw 0.2vh 0.8vw;
  position:relative;
  font-size:80%;
  text-align:center;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}


.menu a::after {
  content: "";
  position: absolute;
  left: 5%;            
  bottom: -3px;
  width: 90%;           
  height: 3px;          
  background: #5e916b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.menu a:hover {
  color: #e6f0ea; 
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
  */

  .draggable {
    cursor: grab;
    transition: filter 0.5s linear;
  }
  
  .draggable:active {
    cursor: grabbing;
  }
  
  .carosello_prodotti .owl-carousel .owl-dots.disabled{
    display: block !important;
  }

.empty_menu{
  width: 28%;
}

  .loghi_menu{
    width: 18%;
    padding-right: 2vw;
    padding-top: 2.5vh;
  }

  .shrink .loghi_menu{
    width: 14%;
    padding-right: 2vw;
    padding-top: 2.5vh;
  }

  .loghi_menu div{
    width: 50%;
    text-align: right;
  }

  .loghi_menu img{
    height: 3vh;
  }

  .logo_cushman{
    height: 4vh !important;
  }

  .shrink .loghi_menu img{
    height: 2.5vh;
  }

  .shrink .logo_cushman{
    height: 3vh !important;
  }


  .menu{
    padding: 1.5vh 1vw 2vh 1vw;
    margin-top: 2vh;
    /* display: flex; */
    gap: 1.5vw;
    }
    
    #home .menu{margin-top: 2vh;}
    
    .menu-item {
    position: relative;
    }
    
    
    .menu a{
    text-decoration: none;
    color: var(--txt-white);
    display: block;
    padding: 0 0.8vw 0.2vh 0.8vw;
    position:relative;
    font-size:80%;
    text-align:center;
    transition: all 0.2s ease-out;
    text-transform: uppercase;
    }
    
    
    .menu a::after {
    content: "";
    position: absolute;
    left: 5%;
    bottom: -3px;
    width: 90%;
    height: 3px;
    background: #5e916b;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
    }
    
    
    .menu a:hover {
    color: #e6f0ea;
    }
    
    
    .menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    }
    
    
    /* --- SOTTOMENU CON I DIV --- */
    .submenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 4px;
    min-width: 190px;
    padding: 6px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-direction: column;
    z-index: 10;
    }
    
    
    .menu-item:hover .submenu{
    display: flex;
    }
    
    
    .submenu a{
    color: #235716 !important;
    padding: 10px 15px;
    font-size: 75%;
    text-align: left;
    position: relative;
    }
    
    .submenu a::after {
      content: "";
      position: absolute;
      left: 5%;
      bottom: 6px;
      width: 80%;
      height: 3px;
      background: #5e916b;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.35s ease;
      }
      
    
    
    .submenu a:hover{
    color: #235716 !important;
    }

.shrink .menu a{
  color: var(--txt-black);

}


.shrink .menu a:hover{
  text-decoration: none;
  color: #333;
}




.intro {
  height: 100vh;
  width: 100%;
  position: relative;
  /*background-color: #268F81;
  clip-path: ellipse(150% 95% at 75% 5%);*/
}


.intest{
  width: 100%;
  position: relative;
  /*background-color: #268F81;
  clip-path: ellipse(150% 95% at 75% 5%);*/
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}



.intest video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.video_omologati{
  display: none;
}

.content_instest{
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.4);
  padding: 43vh 0vw 9vh 0;
  height: 100%;
}


.content_instest h1{
  font-size: 500%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  width: 90%;
}


.content_instest_pace h1 {
  font-size: 350% !important;
  width: 70% !important;
}

.content_instest_contatti {
        width: 100%;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 20vh 0vw 9vh 0;
        height: 100%;
    }


    .content_instest_contatti h1{
      font-size: 500%;
      color: #fff;
      font-weight: bold;
      text-align: center;
      margin: 0 auto;
      width: 90%;
    }

.intro_page {
  height: 100vh;
  width: 100%;
  position: relative;
  /*background-color: #268F81;
  clip-path: ellipse(150% 95% at 75% 5%);*/
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.intro_page::after{
	content:'';
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.3);
	position:absolute;
	top:0;
	left:0;
	z-index:0;
}


.content_intro_page{
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.2);
  padding: 20vh 0vw 5vh 0;
  height: 100%;
	z-index:1;
	position:relative;
}

.content_intro_page h1{
  
  font-size: 500%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  
  margin: 0;
}

.breadcrumbs{
width: 100%;
text-align: center;
color: #fff;
font-size: 90%;
margin-bottom: 0;
}



.breadcrumbs a{
  text-decoration: none;
  color: var(--txt-white);
  display: inline-block;
  padding: 0 0.8vw 0.2vh 0.8vw;
  position:relative;
  text-align:center;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}


.breadcrumbs a::after {
  content: "";
  position: absolute;
  left: 5%;              
  bottom: -3px;
  width: 90%;           
  height: 3px;          
  background: #5e916b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.breadcrumbs a:hover {
  color: #e6f0ea; 
}

.breadcrumbs a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown{
	width: 5%;
  text-align: right;
}

.shrink .dropdown{
  width: 5%;
  text-align: right;
  padding-top: 0.2vh;
}

.dropdown-toggle{
  border: 1px solid transparent;
  color: #222;
  font-size: 0.8em;
}

.dropdown-toggle:hover,.dropdown-toggle:active,.dropdown-toggle:link{
  background-color: #fff;
  border: 1px solid transparent;
  color: var(--txt-black);
}

.dropdown-item{
text-align: center;
}

    .lang_select{
        height:15px;
    }

.dropdown-item img{
  height: 15px;
  margin:0 auto;
}



.intro video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  z-index: -1;
  bottom: -6vh;
}



.content_intro{
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.5);
  padding: 32vh 0vw 0 0;
  height: 100%;
}

.content_intro h1{
  
  font-size: 500%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  
}

.content_intro h2{
  color: #989795;
  text-align: center;
  font-size: 180%;
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
  margin: auto;
}


.green_hp{
  width: 100%;
  padding: 12vh 0;
  background-image: url(../images/back_green.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

.star_hp{
  position: absolute;
  top: -10%;
  right: 20%;
  z-index: 9;
  height: 15vh;
}

.star_azienda{
  position: absolute;
  top: -63%;
  right: 17%;
  z-index: 9;
  height: 15vh;
}

.star_scheda{
  position: absolute;
  top: -7%;
  right: 20%;
  z-index: 9;
  height: 15vh;
}


.star_catalogo{
  position: absolute;
  top: -10%;
  right: 20%;
  z-index: 9;
  height: 18vh;
}


.content_green_hp{
  width: 80%;
  margin: 0 auto;
}

.img_green_hp{
  width: 49%;
  height: 48vh;
  background-image: url(../images/img_green_hp.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.text_green_hp{
  width: 48%;
}

.text_green_hp h1{
  color: #fff;
  font-size: 265%;
  font-weight: bold;
  
  margin-bottom: 2vh;
}

.text_green_hp p{
  color: #fff;
  font-size: 100%;
  margin-bottom: 4vh;
}

.scheda{
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 10vh 0;
}



.content_scheda{
  width: 80%;
  margin: 0 auto;
}

.content_scheda60{
  width: 50%;
  margin: 0 auto;
}

.content_scheda_ref{
  width: 60%;
  margin: 0 auto;
}



.content_img_scheda{
  width: 49%;
}

.content_img_scheda_big{
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.img_scheda{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  transition: transform 0.2s ease-out;
  position: relative;
  overflow: hidden;
  filter: brightness(0.9);

}

.img_scheda:hover{
  transform: scale(1.05);
  filter: brightness(1);

}

/* luce più sottile */
.img_scheda::after{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

/* animazione più soft */
.img_scheda:hover::after{
  animation: flashSoft 0.5s ease;
}

@keyframes flashSoft{
  0%{
    left: -60%;
  }
  100%{
    left: 120%;
  }
}


.img_small{
  margin: 1.5vh auto 2vh auto;
  width: 100%;
}

.content_box_img_small{
  width: 32%;
  height: 18vh;
  overflow: hidden;
  margin: 0 0.77vw 1.5vh 0vw;
  margin-right: 0.5;
}

.box_img_small{
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.2s ease-out;
  position: relative;
  overflow: hidden;
  filter: brightness(0.8);
}

.box_img_small:hover{
  transform: scale(1.05);
  filter: brightness(1);
}

/* luce soft */
.box_img_small::after{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

/* animazione */
.box_img_small:hover::after{
  animation: flashSmall 0.5s ease;
}

@keyframes flashSmall{
  0%{
    left: -60%;
  }
  100%{
    left: 120%;
  }
}

.content_box_img_small:nth-child(3n) {
  margin-right: 0;
}


.text_scheda{
  width: 48%;
  font-weight: 300;
}


.testimonials {
  width: 100%;
  margin: 2vh auto;
  background-color: #f0f4e8;
  padding: 2vh 2vw;
  border-radius: 0.5vw;
}

.testimonials-title {
  font-size: 200% !important;
  font-weight: 600 !important;
  margin-bottom: 1vh !important;
  color: #235716 !important;
  text-align: center;
  font-style: italic;
}

.testimonial {
  background: #ffffff;
  border-radius: 1vw;
  padding: 2vh 2vw;
  margin-bottom: 3vh;
  box-shadow: 0 0.3vh 1vh rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.testimonial-text {
  font-size: 95% !important;
  /* line-height: 1.7 !important; */
  color: #333;
  position: relative;
  padding-left: 1.5vw;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 10vw;
  position: absolute;
  left: -1.8vw;
  top: -8.1vh;
  color: #235716;
  opacity: 0.2;
}

.testimonial-author {
  font-size: 90% !important;
  font-weight: 500 !important;
  color: #235716 !important;
  margin: 0 !important;
  text-align: right;
  font-style: italic;
}


.text_scheda100{
  width: 100% !important;
  font-weight: 300;
}

.text_scheda h1{
  color: var(--colore-primario);
  font-size: 300%;
  font-weight: bold;
  
  margin-bottom: 2vh;
}

.text_scheda_pace h1{
  font-size: 200% !important;
}

.text_scheda h2 {
  color: #222;
  font-size: 150%;
  font-weight: bold;
  margin: 4vh 0 2vh 0;
}

.text_scheda p{
  color: var(--txt-black);
  font-size: 100%;
  margin-bottom: 4vh;
  line-height: 1.6;
  font-weight: 300;
}

.text_scheda ul{
  color: var(--txt-black);
  font-size: 100%;
  margin: 0 auto 4vh auto;
  padding: 0;
  line-height: 1.6;
  width: 95%;
  font-weight: 300;
  }

.text_scheda a{
  color: #1C4510 !important;
}

.text_scheda a:hover{
  color: #222 !important;
}

.text_center{
  text-align: center;
  padding-top: 5vh;
}

.text_center h1{
  text-align: center !important;
  font-size: 260% !important;
}

.text_center p{
  text-align: center;
}


#more_page{
  padding: 1.5vh 0;
  background-color: #222;
  text-decoration: none;
  font-size: 100%;
  display: block;
  color: #fff !important;
  width: 28%;
  text-align: center;
  margin-top: 1vh;
  transition: all 0.2s ease-out;
}

#more_page:hover{
background-color: #1C4510;
text-decoration: none;
font-size: 100%;
color: #fff !important;  
}


#more_center{
  padding: 1.5vh 0;
  background-color: #222;
  text-decoration: none;
  font-size: 100%;
  display: block;
  color: #fff !important;
  width: 28%;
  text-align: center;
  margin-top: 1vh;
  transition: all 0.2s ease-out;
  margin: 0 auto;
}

#more_center:hover{
background-color: #1C4510;
text-decoration: none;
font-size: 100%;
color: #fff !important;  
}


#video_scheda{
  text-align: center;margin: 8vh auto;
}

#video_scheda video{
  width: 100% !important;
  height: 45vh !important;
  object-fit: cover;
}

#video_scheda iframe {
  width: 100% !important;
  height: 45vh !important;
}

#video_scheda_pag_interna{
  text-align: center;margin: 0 auto 8vh auto;
  width: 90%;
}

#video_scheda_pag_interna video{
  width: 100% !important;
  height: 85vh !important;
  object-fit: cover;
}

#video_scheda_pag_interna iframe {
  width: 100% !important;
  height: 85vh !important;
}

.tabella_scheda{
  width: 100%;
  /*border: 1px solid #7A9839;*/
  margin: 0 auto;
  overflow: hidden;
  font-weight: 300;

}


.intest_tabella{
width: 100%;
background-color: #7A9839;
color: #fff;

text-align: center;
font-weight: 300;
padding: 1vh 0;
font-size: 130%;
position: relative;
text-transform: capitalize;
}


.wrap_dati {
display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 0 2vh;
}


.box_dati {
  padding: 1vh 0;
  text-align: center;
  color: #222;
  height: 100%;
  font-size: 100%;
  text-transform: capitalize;
}




.first_box_dati {
border-right: 0.1em solid #7A9839;
}



.wrap_dati:nth-child(even){
background-color: #DDDDDD;
}


.wrap_dati:nth-child(odd){
  background-color: #E6E6E6;
  }
  
  


.more{
  padding: 1.5vh 0;
  background-color: #fff;
  text-decoration: none;
  font-size: 100%;
  display: block;
  color: #222;
  width: 28%;
  text-align: center;
  transition: all 0.2s ease-out;
}

.more:hover{
background-color: #1C4510;
text-decoration: none;
font-size: 100%;
color: #fff;  
}




.veicoli_hp{
  width: 100%;
  padding: 15vh 0 0 0;
  overflow: hidden;
  position: relative;
}



/* freccina che scorre su e giu */
/* freccina che scorre su e giu */
/* freccina che scorre su e giu */



.veicoli_sticky_arrow{
        position: absolute;
        top: 28vh;
        left: 45.5vw;
        width: 8%;
        text-align: center;
        z-index: 3;
}

.arrow-down-veicoli {display: block;margin: 0 auto;position: relative;width: 10px;height: 100px;z-index: 999999999999999999999999999;pointer-events: none;outline: none !important;box-sizing: border-box;}

.arrow-down-veicoli::before {
    -webkit-animation: elasticus 2.2s cubic-bezier(1, 0, 0, 1) infinite;
    -moz-animation: elasticus 2.2s cubic-bezier(1, 0, 0, 1) infinite;
    -o-animation: elasticus 2.2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 2.2s cubic-bezier(1, 0, 0, 1) infinite;
    position: absolute;
    top: 80;
    left: 50%;
    width: 2px;
    height: 70px;
    background: #666;
    content: ' ';
}




@keyframes elasticus {
	0% {
			-webkit-transform-origin: 0% 0%;
			-ms-transform-origin: 0% 0%;
			-moz-transform-origin: 0% 0%;
			-o-transform-origin: 0% 0%;
			transform-origin: 0% 0%;
			-webkit-transform: scale(1, 0);
			-ms-transform: scale(1, 0);
			-moz-transform: scale(1, 0);
			-o-transform: scale(1, 0);
			transform: scale(1, 0);
	}
	25% {
			-webkit-transform-origin: 0% 0%;
			-ms-transform-origin: 0% 0%;
			-moz-transform-origin: 0% 0%;
			-o-transform-origin: 0% 0%;
			transform-origin: 0% 0%;
			-webkit-transform: scale(1, 1);
			-ms-transform: scale(1, 1);
			-moz-transform: scale(1, 1);
			-o-transform: scale(1, 1);
			transform: scale(1, 1);
	}
	25.1% {
			-webkit-transform-origin: 0% 100%;
			-ms-transform-origin: 0% 100%;
			-moz-transform-origin: 0% 100%;
			-o-transform-origin: 0% 100%;
			transform-origin: 0% 100%;
			-webkit-transform: scale(1, 1);
			-ms-transform: scale(1, 1);
			-moz-transform: scale(1, 1);
			-o-transform: scale(1, 1);
			transform: scale(1, 1);
	}
	50% {
			-webkit-transform-origin: 0% 100%;
			-ms-transform-origin: 0% 100%;
			-moz-transform-origin: 0% 100%;
			-o-transform-origin: 0% 100%;
			transform-origin: 0% 100%;
			-webkit-transform: scale(1, 0);
			-ms-transform: scale(1, 0);
			-moz-transform: scale(1, 0);
			-o-transform: scale(1, 0);
			transform: scale(1, 0);
	}
	100% {
			-webkit-transform-origin: 0% 0%;
			-ms-transform-origin: 0% 0%;
			-moz-transform-origin: 0% 0%;
			-o-transform-origin: 0% 0%;
			transform-origin: 0% 0%;
			-webkit-transform: scale(1, 0);
			-ms-transform: scale(1, 0);
			-moz-transform: scale(1, 0);
			-o-transform: scale(1, 0);
			transform: scale(1, 0);
	}

}



.veicoli_hp h1{
  color: #222;
  font-size: 600%;
  font-weight: bold;
  margin-bottom: 14vh;
  text-align: center;
}

.veicoli_hp p{
  color: #222;
  font-size: 100%;
  margin: 0 auto 4vh auto;
  text-align: center;
  position: relative;
  width: 80%;
}

.linea_h2::after{
  content: '';
  width: 10%;
  height: 3px;
  background-color: #222;
  position: absolute;
  bottom: -2vh;
  left: 0;
  right: 0;
  margin: auto;
}


/* CONTENITORE ITEM */

.veicoli-carousel{
  margin: 14vh auto 0 auto;
  transform: scale(1.2) !important;
}


.veicoli-carousel .item {
  position: relative;
  width: 100%;
  height: 40vh;
  /* min-height: 320px; */
  /* max-height: 500px; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* OVERLAY BASE */
.veicoli-carousel .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.45s ease;
  z-index: 1;
}

/* LATERALI SCURITI */

.veicoli-carousel .owl-item{
transition: all 0.5s ease-out;
}

.veicoli-carousel .owl-item.active:not(.center) .item::before {
  background: rgba(0, 0, 0, 0.38);
}

.veicoli-carousel .owl-item.active:not(.center) .txt_item_carousel{
filter:brightness(0.5);
pointer-events: none;
}

/* CENTRALE IN EVIDENZA */
.veicoli-carousel .owl-item.center .item {
  /*transform: scale(1.04);*/
  z-index: 3;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.veicoli-carousel .owl-item.center .item::before {
  background: rgba(0, 0, 0, 0);
}

.veicoli-carousel .owl-item.center {
  z-index: 10;
  transform: scale(1.2);
  top: 0vh;
}

.veicoli-carousel .owl-item:not(.center) {
  transform: scale(0.9);
}

    .veicoli-carousel .owl-item:not(.center) .item {
        width: 120%;
      }

.veicoli-carousel .owl-item.prev-center{
  left: -3%;
}

.veicoli-carousel .owl-item.next-center{
  right: -3%;
}

.veicoli-carousel .owl-dots {
  text-align: center;
  margin-top: 6vh;
  position: relative;
  z-index: 10;
  transform: scale(0.8);
  width: 70%;
  margin: 6vh auto 3vh auto;
}

.veicoli-carousel .owl-dot {
  pointer-events: auto;   /* FORZA il click */
  display: inline-block;
  margin: 0 14px;
  padding: 8px 6px;
  font-size: 100%;
  text-transform: uppercase;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  position: relative;
  opacity: 0.6;
font-weight: 600;
  transition: all 0.3s ease;
}



    .veicoli-carousel .owl-dot::after {
    content: "";
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 90%;
    height: 3px;
    background: #5e916b;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
    }

    
  .veicoli-carousel .owl-dot:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    }


.veicoli-carousel .owl-dot:hover {
	opacity:1;
	 color: #235716;
}

.veicoli-carousel .owl-dot {margin-bottom:2vh;position: relative;}

.veicoli-carousel .owl-dot.active {
  opacity: 1;
  color: #235716;
}



/* Linea sotto */
.veicoli-carousel .owl-dot::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: -6px;
  width: 90%;
  height: 3px;
  background: #4F7A5A;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.veicoli-carousel .owl-dot.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.veicoli-carousel .owl-dots,
.veicoli-carousel .owl-dot {
  /* pointer-events: all !important; */
}



.veicoli-carousel .owl-stage-outer {
  overflow: visible !important;
}

.txt_item_carousel{
  width: 100%;
  padding: 12vh 0 12vh 3vw;
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.1);
}

.txt_item_carousel h2{
  color: #fff;
  font-size: 200%;
  font-weight: bold;
  /* margin-bottom: 2vh; */
}

.txt_item_carousel p{
  color: #fff;
  font-size: 80%;
  margin: 0 0 1vh 0 !important;
  text-align: left;
  width: 55%;
}

.allestimenti_speciali_hp{width: 100%;padding: 20vh 0;margin-top: 12vh;position: relative;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;background-position: center center;}

.allestimenti_speciali_hp::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content_allestimenti_speciali_hp{
  position: relative;
  z-index: 2;
  width: 80%;
  margin: 0 auto;
}


.content_allestimenti_speciali_hp h1{
  color: #fff;
  font-size: 300%;
  font-weight: bold;
  /* margin-bottom: 2vh; */
}

.content_allestimenti_speciali_hp p{
  color: #fff;
  font-size: 100%;
  margin: 2vh 0 5vh 0 !important;
  text-align: left;
  width: 45%;
}

.content_allestimenti_speciali_hp .more_green{
 width:15%; 
  font-size:100%;
}



.content_carosello{
  width: 100%;
  margin: 0 0 8vh 0;
 
}

.content_carosello:last-child{
  margin: 0 !important;
}


.carosello_prodotti .content_carosello:nth-child(even){
  /*background-color: #D2DCD2;*/
   padding: 8vh 0 8vh 0;
}


.content_carosello h3{
  color: #222;
  font-size: 300%;
  /* font-weight: bold; */
  
  margin-bottom: 6vh;
  text-align: center;
}

.more_green{
  padding: 1vh 0;
  background-color: #fff;
  text-decoration: none;
  font-size: 80%;
  display: block;
  color: #222;
  width: 25%;
  text-align: center;
  transition: all 0.2s ease-out;
}

.more_green:hover{
background-color: #1C4510;
text-decoration: none;
color: #fff;  
}

footer{
  width: 100%;
  padding: 5vh 0;
  background-color: #1C4510;
  color: #fff;
}

.content_foot{
  width: 80%;
  margin: 0 auto;
}

.txt_foot{
  width: 80%;
  color: #fff;
  font-size: 90%;
}

.txt_foot img{
  height: 5vh;
}

.txt_foot p{
  margin-top: 2vh;
}

.txt_foot a{
  text-decoration: none;
  color: #cccbcb;
}

.txt_foot a:hover{
  text-decoration: underline;
  color: #fff;
}

.foot_social{
  width: 14%;
}

.linkedin{
  width: 2.5vw;
  height: 2.5vw;
  background-image: url(../images/linkedin_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 0.2s ease-out;

}

.linkedin:hover{
  background-image: url(../images/linkedin.svg);

}


.facebook{
  width: 2.5vw;
  height: 2.5vw;
  margin: 0 1vw;
  background-image: url(../images/fb_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 0.2s ease-out;

}

.facebook:hover{
  background-image: url(../images/fb.svg);

}


.instagram{
  width: 2.5vw;
  height: 2.5vw;
  background-image: url(../images/instagram_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 0.2s ease-out;

}

.instagram:hover{
  background-image: url(../images/instagram.svg);

}


/*form scheda*/

.form_info{
	width: 100%;
	background-color: #f5f5f5;
	padding: 5vh 0 10vh 0;
  position: relative;
}


	#form_info h2{
	font-size: 400%;
	margin: 4vh 0 2vh 0;
	padding: 0 0 0 0;
	  color: var(--colore-primario);
	line-height: 1.2;
  
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
	text-align: center;
	}



	#form_info h3{
    font-size: 300%;
    margin: 4vh 0 2vh 0;
    padding: 0 0 0 0;
      color: var(--colore-primario);
    line-height: 1.2;
    
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    }
  
  
	.container-contact-info {
	  width: 60%;
		margin: 0 auto 0 auto;
	  padding:1vh 0;
	}

	.cont-form{
		width: 100%;
	}

	.text-modulo {
    padding: 10vh 0;
    width: 70%;
    margin: 0 auto;
   text-align:center;
   min-height:60vh;
	}


	.text-modulo h1{
  	font-size: 200%;
		font-weight: 800;
	  color: #222;
	}

	.text-modulo p{
		margin: 20px 0 30px 0;
}

	.text-modulo a{
		  color: var(--colore-primario);
		text-decoration: none;
	}
	.text-modulo a:hover{
		color: #222;
		text-decoration: none;
	}



.location{
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  overflow: hidden;
}

#map{
  width: 100%;
  height: 80vh;
}

.txtmaps {
  padding: 20px 20px;
  font-size: 13px;
  text-align: center;
  color: #333;
}

.txtmaps img{
  height: 8vh;
  margin-bottom: 2vh;
}

.txtmaps h2{
  font-weight:500;font-size:150%;
}


.txtmaps p{
line-height:1.5;
font-size:100%;
}

.txtmaps a{
  text-decoration: none;
  color: #000;
}


.txtmaps a:hover{
  text-decoration: none;
  color: var(--colore-primario);
}





.catalogo_page{
  width: 100%;
  padding: 12vh 0;
position: relative;
}

.catalogo_page::before{
  content: '';
  position: absolute;
  inset: 0;
  left: -10%;
  background-image: url(../images/star_green.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center left;
  opacity: 0.2;      /* solo sul background */
  z-index: -1;
  filter: grayscale(1);
}

.content_catalogo{
  width: 80%;
  margin: 0 auto;
}

.box {
  width: 33%;
  text-align: center;
  /* border: 1px solid #999;*/
  border-radius: 0.5vw;
  padding: 0vh 1vw;
  display: block;
  /* background: #fff; */
  transition: all 0.2s ease;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 40vh;
  /*  filter: brightness(0.95);*/
}

.img_box {
  height: 30vh;
  margin: 0 auto;
  width: 100%;
  display: block;
  transition: transform 0.2s ease;
  transition-delay: 0s; /* parte subito */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.8);
}


/*
.box h2 {
  position: relative;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 120%;
  margin: 1.5vh auto 0 auto;
  width: 80%;
  padding: 0.5vh 1vw;
}



.box h2::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #235716, #1C4510);
  transition: width 0.3s ease;
  border-radius: 2px;
}*/

.box h2 {
  position: relative;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 110%;
  margin: 0 auto 0 auto;
  width: 100%;
  padding: 1.5vh 1vw;
  text-transform: uppercase;
  background-color: #dfdcdc;
}

.box:hover h2{
  background-color: var(--colore-primario);
  color:var(--txt-white);
  font-size: 120%;
  margin-top: -2vh;
}
/*
.box:hover h2::after {
  width: 60%;
}*/





/* Hover */
.box:hover {
  transform: translateY(-0.8vh);

}

.box:hover .img_box {
  transform: scale(1.05);
  filter: brightness(1);
}




/* HERO ---------------------------------------- */
.hero_chi_siamo{
  height: 100vh;
  background-image: url('../images/azienda_2025/jet.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

.hero_chi_siamo::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}


.hero_eco{
  height: 100vh;
  background-image: url('../images/img_green.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

.hero_eco::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}


.content_box_eco{
  width: 100%;
  padding: 12vh 0;
  background-image: url(../images/back_green.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.div_content_box_eco{
  width: 80%;
  margin: 0 auto;
}

.box_eco{
  width: 18vw;
  height: 18vw;
  background-color: #fff;
  border-radius: 100%;
}

.box_eco h1{
  font-size: 138%;
  font-weight: 500;
  width: 88%;
  text-align: center;
  color: var(--colore-primario);
  margin: 0 auto;
}

.box_eco p{
  margin:10px auto 0 auto;
  font-size: 95%;
  width: 78%;
  text-align: center;
  font-weight: 200;
  color: #666;
}

.box_eco img{
  width: 5vw;
  display: block;
  margin: 0 auto 1vh auto;
}




.content_box_block{
  width: 100%;
  margin:2vh auto 0 auto;
}

.box_block{
  width: 13vw;
  height: 13vw;
  border-radius: 100%;
  border: 1px solid var(--colore-primario);
}

.box_block h1{
  font-size: 250%;
  font-weight: 500;
  width: 88%;
  text-align: center;
  color: var(--colore-primario);
  margin: 5.8vh auto 0 auto;
}

.box_block p{
  margin:10px auto 0 auto;
  font-size: 100%;
  width: 100%;
  text-align: center;
  font-weight: 200;
  color: #666;
}



.hero_text{
  position:relative;
  color:white;
  text-align:center;
  z-index: 999;
}

.hero_text h1{
  font-size: 400%;
  font-weight: 500;
  
}

.hero_text p{
  margin-top:10px;
  font-size: 140%;
  font-weight: 200;
}

.hero_eco .hero_text p{
  width: 55%;
  margin: 2vh auto 0 auto;
}

.margintop{
  margin-top: 8vh;
}

.video-full {width: 100%;height: 100vh;overflow: hidden;position: relative;z-index: 1; pointer-events: none;/* aumenta se deve stare sopra altri elementi */}

.video-full iframe {
  width: 100%;
  height: 115%;
  position: absolute;
  top: -10%;
}


/* BLOCCHI ALTERNATI ---------------------------------------- */
.block{
  display:flex;
  min-height:60vh;
}

.block_green{
  display: flex;
  min-height: 60vh;
  width: 90%;
  margin: 10vh auto;
}

.block-img-green-left{
  border-radius: 100%;
    width: 100%;
    height: 36vw;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
}


.block-img-green-right{
  border-radius: 100%;
  width: 100%;
  height: 36vw;
  background-size: cover !important;
  background-position: right center !important;
  background-repeat: no-repeat;
}

.blockgreen_dx {
  padding: 0 0vw 0 12vw !important;
}

.block50{
position: relative;
}

.block50::before{
  content: '';
  position: absolute;
  inset: 0;
  left: -10%;
  background-image: url(../images/star_green.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center left;
  opacity: 0.2;      /* solo sul background */
  z-index: -1;
  filter: grayscale(1);
}

.block-img{
  flex:1;
  background-size:cover;
  background-position:center;
}

#pace_tech .block-img{
  padding: 0 5.3vw;
}

.block-img-right{
  background-size: 80%;
  background-position: center left;
  background-repeat: no-repeat;
}

.block-img-left{
  background-size: 80%;
  background-position: center right;
  background-repeat: no-repeat;
}

.block-text{
  flex:1;
  padding:6vh 5vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.block-text{
  padding: 7vh 5vw 10vh 5vw !important;
}

.right-pace{
  padding: 7vh 4vw 10vh 7vw !important;
}

.block-text h2{
  color:#235716;
  margin-bottom: 6vh;
  font-size: 300%;
}

.block-text p{
  margin-bottom:1.6vh;
  line-height:1.5;
}

.block-text ul {
 list-style-type: circle;
 line-height: 1.5;
 font-size: 100%;
 color: #222;
 padding: 0 0 0 1vw;
 margin: 0;
 /* display: block; */
}

.block-text li{
  /* display: inline-block; */
  margin-bottom: 2vh;
}

/* Alternanza */
.alt-left .block-img{ order:1; }
.alt-left .block-text{ order:2; }

.alt-right .block-img{ order:2; }
.alt-right .block-text{ order:1; }

.alt-central{
  padding: 20vh 0 20vh 0;
  background-attachment: fixed;
  width: 100%;
  position: relative;
}

.alt-central::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.alt-central .block-text{
  text-align: center;
  color: #fff !important;
  width: 100%;
  position: relative;
  z-index: 2;
}

.alt-central .block-text h2{
  text-align: center;
  color: #fff !important;
}

.alt-central .block-text p{
  text-align: center;
  color: #fff !important;
  width: 60%;
  margin: 0 auto;
  font-size: 110%;
}

.block4_dx{
  padding: 0 4vw 0 9vw !important;
}

.block4_sx{
  padding: 0 9vw 0 4vw !important;
}



/* RESPONSIVE */
@media(max-width:900px){
  .block{
      flex-direction:column;
  }
  .block-img{
      height:40vh;
      order:unset!important;
  }
}
.gallery{
  padding:0 5vw 8vh 5vw;
 /* background:#f5f5f5;*/
}

.gallery h2{
  text-align:center;
  color:#235716;
  font-weight:400;
  margin-bottom:4vh;
}

/* immagini dentro Owl */
.gallery-owl .item img{
  width:100%;
  height:40vh;
  object-fit:cover;
  transition:transform .1s ease;
}

.gallery-owl .item img:hover{
  transform:scale(1.04);
}

/* dots */
.gallery-owl .owl-dots .owl-dot span{
  background:#c7d8ca !important;
}

.gallery-owl .owl-dots .owl-dot.active span{
  background:#235716 !important;
}



.gallery_grid {
  column-count: 3;
  column-gap: 1.5rem;
  width: 90%;
  margin: 8vh auto;
}

.gallery_grid50{
  width: 50% !important;
}

.gallery_grid img {
  width: 100%;
  display: block;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  /*border-radius: 10px;*/
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.gallery_grid img {
  background-color: #f4f4f4;
}


/* Hover elegante e discreto */
.gallery_grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery_grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery_grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .gallery_grid {
    column-count: 1;
  }
}



.gallery_grid--two {
  column-count: 2;
}

@media (max-width: 768px) {
  .gallery_grid--two {
    column-count: 1;
  }
}



.gallery_grid--one {
  column-count: 1;
}




.page_photogallery{
  padding: 0vh 0 10vh 0;
}

.gallery_grid--four {
  column-count: 4;
}


.gallery_grid--five {
  column-count: 5;
}



#info_tecniche{
  display: none;
}




.gallery_grid--tree {
  column-count: 3;
}

@media (max-width: 768px) {
  .gallery_grid--tree {
    column-count: 1;
  }
}


.referenze{
  width: 80%;
  margin: 0 auto;
  padding: 0 0 12vh 0;
}

.box_referenze{
  /*  border: 1px solid #f00;*/
    width: 17.2%;
    margin: 0 5px 10px 5px;
    overflow: hidden;
    position: relative;
      border: 1px solid #222;
  }

  .box_referenze div{
height: 200px;
background-size: 60%;
background-position: center center;
background-repeat: no-repeat;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    /* opacity: 0.7; */
    position: relative;
  }




.ico-noleggio {
  width: 90%;
  margin: 0 auto 5vh auto;
}

.ico-noleggio div{
  width: 12vw;
  height: 12vw;
  text-align: center !important;
  color: #222;
  font-size: 90%;
  background-color: #f5f5f5;
  padding: 6vh 1vw 0 1vw;
  border-radius: 100%;
}


.ico-noleggio img{
  height: 60px;
  margin: 0 auto;
  display: block;
  }


.ico-intellibrake {
  width: 80%;
  margin: 0 0 20px 0;
}


.ico-intellibrake div{
  width: 48%;
  text-align: center !important;
  color: #222;
  font-size: 90%;
  background-color: #f5f5f5;
  padding: 10px;
}



.ico-intellibrake img{
  height: 120px;
  margin: 0 auto;
  display: block;
  }




  /**/




  .txt_green3{
    width: 60%;
    margin: 0 auto;
    padding: 0vh 0vw 0vh 6vw;
    text-align: center;
  }

  	.icon_eco{
			width: 100%;
			margin: 4vh auto;
			padding: 0;
			}

			.icon_eco img{
			height: 12vh;
			}

			.icon_eco div{
				width: 25%;
				text-align:center;
			}

.icon_eco h1{
	color: #5d5d5d;
	font-weight: normal;
	font-size: 100% !important;
	margin: 0.5vh 0;
	padding: 0;
}


.icon_eco p{
	color: #888;
	font-size: 80%;
	width: 80% !important;
	margin: 0 auto;
	padding: 0;
}

.txt_green_grande2{
  width: 100%;
  height: 68vh;
  margin: 0 auto;
  padding: 8vh 0;
  text-align: center;
  background-image: url(/images/elite_big.jpg);
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  border-radius: 11px;
}
.txt_green_grande2 b{
  color: white;
}

.txt_green_grande_txt2{
  width: 46vw;
  position: absolute;
  top: 41%;
  left: 0%;
}
.txt_green_grande_txt2 b.big{
  font-size: 4.6em;
}

.txt_green2{
  width: 47%;
  margin: 0 auto;
  padding: 2vh 0vw 0vh 0vw;
  text-align: left;
}


.slogan_elite_img{
  border: 0;
  margin: 1vh 1vw 1vh 1vw;
  width: 22vw;
  border-radius: 11px;
}


.txt_green1{
  width: 60%;
  margin: 0 auto;
  padding: 8vh 0;
  text-align: center;
}
.txt_green1 a.big_link{
  font-size: 1.6em;
  color: darkslateblue;
  transition: all 0.2s ease-in;
}
.txt_green1 a.big_link::after{
  content: ' <';
  transition: all 0.2s ease-in;
}
.txt_green1 a.big_link::before{
  content: '> ';
  transition: all 0.2s ease-in;
}
.txt_green1 a.big_link:hover{
  color: var(--colore-primario);
  transition: all 0.2s ease-in;
}

.txt_green1 h1{
color: var(--colore-primario);
font-weight: 400;
text-transform: uppercase;
font-size: 220%;
margin: 0 0 30px 0;
padding: 0;
}

.txt_green1 p{
width: 80%;
margin: 0 auto;
color: #222;
font-size: 100%;
padding: 0;
line-height: 1.6;
}


.all_pace{
  width: 100%;
  padding: 18vh 0 12vh 0;
  background-image: url(../images/pace_golf/1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.all_pace::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top:0;
  left:0;
  z-index: 1;
}

.all_pace .txt_pace25{
  width: 43%;
  position: relative;
  z-index: 2;
  color: #fff !important;
  padding: 0 0 0 3vw;
  margin-bottom: 10vh;
}
.all_pace .txt_pace25::before{
	content:"";
	width:1px;
	height: 95%;
	background-color:#fff;
	position:absolute;
	left:4vw;
}

.tit_all_pace{
  width: 100%;
  text-align: center;
  z-index: 2;
  margin-bottom: 8vh;
}

.tit_all_pace h1{
  color: #fff !important;
  font-size: 300%;
  font-weight: 600;
  text-align: center;

}



.txt_pace25 h1{
  color: #fff !important;
  font-size: 180%;
  font-weight: 600;
  margin-bottom: 1vh;
  padding-left: 3.8vw;
  padding-top: 2vh;
}


.txt_pace25 h2 {
  color: #fff !important;
  font-size: 150%;
  font-weight: bold;
  margin: 4vh 0 2vh 0;
}

.txt_pace25 p{
  color: #fff !important;
  font-size: 100%;
  margin-bottom: 4vh;
  line-height: 1.6;
  font-weight: 300;
}

.txt_pace25 ul{
  color: #fff !important;
  font-size: 100%;
  margin: 0 auto 4vh auto;
  padding: 0;
  line-height: 1.6;
  width: 80%;
  /* list-style-type: none; */
  font-weight: 300;
  }

  .button_pace{
    width: 100%;
    margin: 2vh auto;
  }

.line{
  width: 100%;
  height: 1px;
  margin: 5vh auto 3vh auto !important;
background-color: #b1b1b1;
}

  .title_pace {

    text-align: center;
    /* color: #1C4510 !important; */

}

  /*
  .button_pace a{
    padding: 1.5vh 0;
    background-color: #222;
    text-decoration: none;
    font-size: 110%;
    display: block;
    color: #fff !important;
    width: 18%;
    text-align: center;
    transition: all 0.2s ease-out;
    border-radius: 10px;
  }
  
  .button_pace a:hover{
  background-color: #1C4510;
  text-decoration: none;
  color: #fff !important;  
  }
  */
  .button_pace a {
    display: block;
    width: 24%;
    background: linear-gradient(135deg, #1C4510, #2e6b1c);
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 110%;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(28, 69, 16, 0.3);
    transition: all 0.3s ease;
}

/* Hover elegante */
.button_pace a:hover {
  color: #fff !important;

    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(28, 69, 16, 0.45);
    background: linear-gradient(135deg, #245c14, #3a8a24);
}

/* Click */
.button_pace a:active {
    transform: scale(0.97);
}

/* Glow soft moderno */
.button_pace a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button_pace a:hover::after {
    opacity: 1;
}