* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

 .stat-card p { color:#fff}
@media (max-width: 900px) {
    .motore-card.reverse 
 {
  grid-template-columns: 1fr  !important;
}
    
}
@media (max-width: 480px) {
    .title {
        font-size: 1.2rem;
        text-align:left;
    }
}
/* =====================================================
   SEZIONE ROWS-11
   (Testo a sinistra + immagine a destra)
   ===================================================== */

.rows-11 .wrapper-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1300px;
    margin: auto;
}

.rows-11 .text-content-ws {
    flex: 1;
}
.preTitle h6 { text-align:left}
.rows-11 .contenitoreimages {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rows-11 img {
    width: 100%;
    max-width: 520px;
    border-radius: 10px;
}


/* =====================================================
   SEZIONE ROWS-12
   (Le card animate con icona)
   ===================================================== */

.rows-12 .wrapper-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.item-element {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    opacity: 1;
    min-height: 250px;
    transition: 0.5s ease;
}

.item-element.opacity {
    opacity: 0;
}

.item-element-title > div svg {
    width: 55px;
    height: 55px;
    fill: #ef5a29;
    margin-bottom: 10px;
}

.item-element-title:not(:first-child) {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0 12px;
    color: #002b5c;
}

.item-element-description {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}


/* =====================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â TABLET
   ===================================================== */

@media (max-width: 992px) {

    /* rows-11 */
    .rows-11 .wrapper-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .rows-11 .text-content-ws {
        order: 1;
    }

    .rows-11 .contenitoreimages {
        order: 2;
    }

    .rows-11 img {
        max-width: 420px;
    }

    /* rows-12 */
    .rows-12 .wrapper-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-element {
        min-height: 220px;
        padding: 20px;
    }

    .item-element-title > div svg {
        width: 45px;
        height: 45px;
    }
}


/* =====================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â MOBILE
   ===================================================== */

@media (max-width: 600px) {

    /* ROWS-11 */
    .rows-11 .wrapper-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .rows-11 img {
        max-width: 100%;
    }

    /* ROWS-12 */
    .rows-12 .wrapper-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .item-element {
        text-align: center;
        padding: 22px;
    }

    .item-element-title > div svg {
        margin: auto;
        width: 40px;
        height: 40px;
    }

    .item-element-title:not(:first-child) {
        font-size: 17px;
    }

    .item-element-description {
        font-size: 14px;
    }
}

.service-card-s h3 {color: #000 !important;margin:0;font-weight:600;font-size:12px !important; margin:0 10px}
 .titleinfo {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000!important;
    border-bottom: 2px solid #818181 !important;
    padding: 10px 0;
    text-align:left;
}
 .b-rows h1 {}
.iperlink {color: #f3a1a1;font-weight:bold;text-decoration:none}
.recensioni-block li { text-align:left}


 
 .contatti-info  .container { flex-direction:column; margin:0 }

.ricambi-tipo_cont {
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 padding: 0 20px;
 gap: 30px;
 align-items: flex-start;
 width: 100%;
}
.divs-r {width:100%;display: flex;flex-direction: column;}
.divs-r img {height:500px;width: 100%;}
.iscrizione-asi .container {margin:auto;flex-direction: column;}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1450px;
  margin: 0px auto;
  padding: 3rem 1rem;
  flex-direction: row;
  z-index: 1;
  position: relative;
}

.text {
  flex: 1;
  color: #000;
}
.details p {display:flex;flex-direction: column;color:#ffffff;margin-bottom:0;justify-content: center;align-items: center;gap: 2px;align-content: center;}
.details p a {white-space: nowrap;color: #6db92a;text-decoration:none;font-size: 22px;font-weight:500;position: relative;/* top: -5px; */}
.details p  span  {color:#ffffff; white-space: nowrap; font-weight:bold; font-size:12px; text-transform:uppercase; margin-bottom:0 }


.image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image img {
  width: 100%;
  max-width: 480px;
  /* border-radius: 16px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  color: #111;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #d1d1d1;
}

.reverse {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 900px) {
    .divs-r img {
    height: 240px;
    width: 100%;
}
    .ricambi-tipo_cont {
          grid-template-columns: repeat(1, 1fr);

    }
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image img {
    max-width: 90%;
  }
}






.prev-step:hover {
 background:#0c163c;
}
h4 {font-weight: 400;/* text-transform:uppercase; */font-size: 20px;}
.images {display:flex; margin:50px 0;width:100%;gap:20px;flex-direction: row;justify-content: space-evenly;}
.images img {flex:0 0 30%; width:3%; display:flex;}
.hero h3 {
    display:flex;
    color: #fff;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    gap: 10px;
    align-content: center;
    justify-content: center;
    align-items: center;
    }
/* ============================
   SELECT RICAMBI Ã¢â‚¬â€œ STILE MODERNO
   ============================ */
.choices { width:100%}
#ricambio-veicolo {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    color: #333;
    outline: none;
    transition: all 0.25s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23555' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* Hover */
#ricambio-veicolo:hover {
    border-color: #aaa;
}

/* Focus */
#ricambio-veicolo:focus {
    border-color: #0066ff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.15);
}

/* Placeholder */
#ricambio-veicolo option[value=""] {
    color: #777;
}

/* ============================
   OPTGROUP (CATEGORIE)
   ============================ */
#ricambio-veicolo optgroup {
    font-weight: bold;
    font-size: 15px;
    color: #0056c9;
    padding: 8px 0;
    background: #f7faff;
}

/* Divider per sottocategorie (option disabled) */
#ricambio-veicolo option[disabled] {
    font-size: 12px !important;
    color: #999 !important;
    padding: 8px 12px;
    background: #f1f1f1 !important;
    font-style: normal;
}

/* Opzioni generali */
#ricambio-veicolo option {
    padding: 10px;
    color: #222;
    font-size: 14px;
}

/* Al passaggio del mouse sugli option (solo su browser supportati) */
/* Hover (solo browser compatibili) */
#ricambio-veicolo option:hover {
    background-color: #001f3f !important; /* Blu notte */
    color: #fff !important;
}
/* Contenitore Choices */
.choices__list--dropdown .choices__item--selectable:hover {
    background: #001f3f !important;   /* blu notte */
    color: #fff !important;
}

/* Categoria (optgroup) */
.choices__group {
    font-weight: bold;
    background: #f1f5ff;
    color: #003366;
    padding: 10px;
}

/* Dropdown moderno */
.choices__list--dropdown {
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* Select base */
.choices__inner {
    border-radius: 12px !important;
    border: 1px solid #ccc !important;
    padding: 10px 14px !important;
    min-height: 50px !important;
}

/* Mobile */
@media (max-width: 600px) {
    #ricambio-veicolo {
        font-size: 14px;
        padding: 12px;
    }
}

.line-heis {width: 2px;height: 20px;background:#ffffff;position:relative;display: flex;}
.content-jotform .elementor-widget-container {top:0;padding: 0px;position:relative;}
.b-rows .content-jotform #multi-step-form { background:none !important}
.hero .content-jotform #multi-step-form { width:80%}
.hero .elementor-widget-container {margin-top: 0px;padding: 0px;position:relative;}
.elementor-widget-container {/* margin-top: 100px; */padding: 30px;position:relative;/* background: #eee; */border-radius: 8px;}
.elementor-widget-container p {color: #dadada !important;}
form {display:flex;position:relative;height:auto;margin:auto;/* background: #111; *//* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); */flex-direction: column;}
.contatti-info {display:flex;width: 100%;position:relative;gap:5px;margin: 80px 20px;flex-direction:column;max-width: 1450px;align-content: flex-start;align-items: flex-start;z-index: 9;}
.contatti-info h2 {color: #ffffff !important;font-size:30px !important;border-bottom: 4px solid #4f4f4f;padding-bottom:30px;text-align: left !important;width: 100% !important;}
.contatti-info p {color: #ffffff !important;font-weight:400;font-size: 14px !important;margin:0 !important;text-align: left !important;}
.secondary-color .content-jotform  { margin:auto;}
.hero .content-jotform {width: 80%;background: none;}
.hero .content-jotform h2 span {/* color:#fff !important; */font-size: 22px;margin:20px 0;font-weight: 100;/* width: 80%; *//* display: inline-block; */}
.content-jotform {max-width: 1450px;margin: 50px 0;}
.image_slide { width:100%; height:100vh}
.wrapper-content {
    width: 100%;
    margin:auto;
}
 
h6 { font-size:16px; color:#fff;font-weight:200; text-align:justify}
header div {/* margin:0 5%; */}
 header div ul {
        flex-direction: row;
        position: relative;
        left: 0;
        width: 100%;
        display: flex;
        /* gap: 5px; */
        list-style: none;
        height: 50px;
        justify-content: flex-start;
    }
.orari p,.contattaci p { margin:0}
header div ul  li {}



ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    position: relative;
}

ul li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

/* Sottomenu nascosto */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #CDDC39;
    border: 1px solid #0a283a;
    min-width: 240px;
    z-index: 999;
    height: auto;
}

.submenu li a {
    padding: 0 20px;
    white-space: nowrap;
    width: 100%;
    color: #000;
}

/* Mostra sottomenu al passaggio del mouse */
.dropdown:hover .submenu {
    display: flex;
    flex-direction: column;
    align-content: stretch;
}

/* Icona â–¾ */
.dropdown > a::after {
    margin-left: 5px;
}





header div ul  li:last-child {/* padding:0 20px  0 0; */border-right:none}
 header div ul li a {color: #fff;font-family:'Oswald', sans-serif !important;text-decoration:none;/* padding:0 30px; */font-weight: 400 !important;font-size: 16px;text-transform:uppercase;transition:  0.5s linear;height: 100%;position: relative;line-height: 50px;padding: 0 20px;display: inline-block;}
 header div ul li a:hover {background: #cddc39;color: #000000;}
 header div ul li a  {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding-bottom: 2px; /* piccolo spazio per la linea */
}
 .motorsinfodiv p { color:#eee}
 .motorsinfodiv { width:100%; color:#fff;text-align:justify}
.motorsInfo-block {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    max-width: 1450px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.motorsInfo-imageBox {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.motorsInfo-image {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}

.motorsInfo-textBox {
    max-width: 900px;
    margin: 0 auto;
}

.motorsInfo-textBox h2 {
    font-size: 32px;
    color: #2a3840;
    margin-bottom: 15px;
}

.motorsInfo-textBox p {
    font-size: 17px;
    line-height: 1.6;
    color: #2a3840;
    margin-bottom: 18px;
}

/* ====== MOBILE OPTIMIZATION ====== */

@media (max-width: 768px) {

    .motorsInfo-textBox h2 {
        font-size: 26px;
    }

    .motorsInfo-textBox p {
        font-size: 16px;
    }

    .motorsInfo-image {
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
}

@media (max-width: 1024px) {
#content-html {
    margin: 50px 0 0 0 !important;
}
    .motorsInfo-block {
        padding: 25px 15px;
        flex-direction: column;
    }

    .motorsInfo-textBox h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .motorsInfo-textBox p {
        font-size: 15px;
        line-height: 1.5;
    }
}

#content-html {
  margin-top: 100px;
  background:#20201e
}
/* ====== HERO SECTION ====== */
.usedHero-box {
    width: 100%;
    padding: 80px 0;
    background: #2a3840 url('immagini/motori-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}
.usedHero-box h1 {
    font-size: 42px;
    margin-bottom: 10px;
}
.usedHero-box p {
    font-size: 18px;
    opacity: 0.9;
}

/* ====== GALLERY SLIDER ====== */
.photoShow-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0 25px;
}
.photoShow-track {
    display: flex;
    transition: transform 0.4s ease;
}
.photoShow-item {
    min-width: 100%;
}
.photoShow-item img {
    width: 100%;
    display: block;
}
.photoShow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
}
.photoShow-left { left: 15px; }
.photoShow-right { right: 15px; }
.photoShow-dots { text-align: center; margin-top: 12px; }
.photoShow-dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    display: inline-block;
    border-radius: 50%;
    margin: 4px;
    cursor: pointer;
}
.photoShow-dot.active { background: #333; }

/* ====== MOTORS LIST ====== */

.motorsContainer {
    padding: 40px 20px;
}
.motorsContainer h2 {
    text-align: center !important;
    font-size: 34px;
    margin-bottom: 15px;
}
.motors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 25px;
    margin-top: 25px;
}
.motorCard {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}
.motorCard h3 {
    margin: 12px 0 8px;
    color: #2a3840;
}
.motorCard p { font-size: 15px; line-height: 1.5; }

/* ====== GARANZIE ====== */
.guaranteeBox {
    background: url(../immagini/43471843_m.jpg);
    color: #fff;
    padding: 50px 20px;
    background-position: bottom center;
    background-repeat: repeat;
    background-size: 21% auto;
}
.guarantee-title {
    text-align: center !important;
    font-size: 32px;
    margin-bottom: 20px;
    color: #cddc39;
}
.guarantee-row {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    margin-top: 25px;
}
.guarantee-item p {
  color: #000000;
}
.guarantee-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #000;
}
.guarantee-item h4 { font-weight:bold; margin-bottom: 10px; }

/* ====== CONTATTI ====== */
.infoContact-area {
    background: #4f4f28;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.infoContact-area h2 {
    font-size: 32px;
    color:#fff; text-align: center !important;
}
.infoContact-area p {
 
    color:#ddd; text-align: center;
}
.infoContact-area a {
    display: inline-block;
    margin-top: 20px;
    background: #cddc39;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
}

 
.contactphone, .contattihead {width: auto;display: flex;position: relative;float: right;margin: auto 20px;gap: 40px;}
#message { position:relative; width:100%; height:200px; border:1px solid #ccc; border-radius:8px; resize:none}
 
    nav {
        position: fixed;
        width: 100%;
        height: auto;
        display: none;
        background: rgb(0 0 0 / 60%);
        right: 0;
        top: 80px;
        backdrop-filter: blur(10px);
        padding: 50px 0;
        z-index: 1000;
    }
.sectionmobile { display: none; }
.hero .sectionsplit {width: 100%; display: flex;flex-direction: column;align-content: center;margin: auto;left:0;position: relative;align-items: center;justify-content: center; padding:20px 0; background:#00000060;    backdrop-filter: blur(5px);           /* sfoca quello sotto */
  -webkit-backdrop-filter: blur(5px);   /* per Safari */
} }
.sectionsplit {width: 60%;display: flex;flex-direction: column;justify-content: center;align-content: flex-start;align-items: center;margin: auto;left: 10%;position: relative;}
#displayblocked {
    background: #00000050;
    display: none;
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 110vh;
}
.mini-link { position:fixed; bottom:20px; left:20px; background:#ccc; border-radius:50px}
.mini-link i { margin:9px 10px; font-size:30px}
#cookie-banner.show, #mini-link.show, #cookie-customization.show, #displayblocked.show {
    display: flex;
    animation: fadeIn 1s;
    flex-direction: column;
}
#cookie-customization {
    display: none;
    z-index: 1000;
    background: #fff;
    width: 90%;
    position: fixed;
    height: auto;
    bottom: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    padding: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0px 0px 10px #00000040;
    -webkit-box-shadow: 0px 0px 10px #00000040;
    box-shadow: 0px 0px 10px #00000040;
}

#cookie-banner p {
    margin: 10px;
    width: 100%;
    font-size:12px;
}

#cookie-customization p {
    margin: 10px 0;
    font-size: 16px;
}

#cookie-banner h3 {
    margin: 10px;
    width: 100%;
}

#accept-all-cookies {
    
    
}

#accept-all-cookies:hover {
    background: #f61213 !important;
    border: 2px solid #f61213;
    color: #fff !important
}
.whatsapp-btn {
    display: inline-block;
    position:fixed;
    z-index:99999;
    align-items: center;
    justify-content: center;
    background-color: #127c50;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
    padding: 5px 20px;
    border-radius: 4px;
    bottom:20px;
    right:20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-btn i {
    margin-right: 10px;
    font-size: 16px;
  }
#cookie-banner {
    display: none;
    position: fixed;
    margin-top:50px;
    top: 50%;                 /* Position in the middle vertically */
    left: 50%;                /* Position in the middle horizontally */
    transform: translate(-50%, -50%); /* Adjust position to be centered */
    width: auto;
    height: auto;
    background-color: #fff;
    color: #000;
    text-align: left;
    padding: 10px;
    z-index: 1000;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0px 0px 10px #00000040;
    -webkit-box-shadow: 0px 0px 10px #00000040;
    box-shadow: 0px 0px 10px #00000040;
}
#cookie-banner button, #cookie-customization button {
    background: none;
    border: 2px solid #000000;
    color: #000000;
    padding: 10px 20px;
    margin: 5px 5px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0px;
}

#save-preferences {
    bottom: 20px;
    position: absolute;
}

#cookie-banner button:hover, #cookie-customization button:hover {
    background-color: #000;
    color: #fff !important;
    
}
body {
    font-family: 'open sans', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

 

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* gap:100px; */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2); /* Ombra grigia sfocata */
    background: #1a1a1a;
    backdrop-filter:blur(10px);
    /* padding: 20px 0; */
    z-index: 1000;
    display: flex;
    color: #fff;
    /* height: 160px; */
    transition: background 0.3s;
    transition: padding 0.5s ease;
    /* border-bottom: 2px solid #ddd; */
    /* flex-direction: row-reverse; */
    justify-content: space-between;
    align-items: center;
}
.services .corpo-section { flex-direction:column}
.corpo-section {width:100%;max-width:1450px;margin:auto;display:flex;gap:20px}
 .ricambi-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #faf7f5;
      border-radius: 20px;
      padding: 3rem;
      /* max-width: 100px; */
      margin: 0rem auto;
      /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
      flex-wrap: wrap;
      gap: 2rem;
    }

    .ricambi-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .ricambi-image img {
      width: 100%;
       
      height: auto;
    }

    .ricambi-content {
      flex: 1 1 400px;
    }

    .ricambi-content h2 {
      font-size: 2rem;
      color: #000000;
      margin-bottom: 0.5rem;
    }

    .ricambi-content h3 {
      color: #f7b500;
      font-size: 1.7rem;
      margin-bottom: 1rem;
    }

    .ricambi-content p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
        color:#333
    }

    .ricambi-content span {
      font-weight: 600;
      color: #000;
    }

    .ricambi-button {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      /* border: 2px solid #f7b500; */
      border-radius: 25px;
      color: #000000;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .ricambi-button:hover {
      background-color: #0a283a;
      color: white;
    }

    .ricambi-savings {
      display: block;
      margin-top: 1rem;
      font-weight: 700;
      color: #f7b500;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .ricambi-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem; margin:0
      }

      .ricambi-content h2 {
        font-size: 1.8rem;
      }

      .ricambi-content h3 {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 600px) {
      .ricambi-content p {
        font-size: 0.95rem;
      }

      .ricambi-button {
        width: 100%;
        text-align: center;
      }
    }
.desktopheader {display: flex;flex-direction: column;}
.contentheader {/* border-top: 1px solid #b3b3b3; *//* max-width: 100% !important; *//* background-color: #1e1e1e; */}
.contentheader,.arealogoinfo {width: 100%;margin: 0px auto;display:flex;min-width:1000px;flex-direction:row;gap: 20px;max-width: 1450px;justify-content: space-between;align-items: center;}
.arealogoinfo { margin: 10px auto; }
.mobileheader {display: none; z-index:99999}
header.scrolled {
    background: black;
}
 
.contactphone a {
    height:50px;
    width:150px;
    padding: 0px 10px;
    position:relative;
    background-image: linear-gradient(to right, #CDDC39 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition:all 0.5s linear;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-family:'Oswald', sans-serif !important;
    text-transform:uppercase;
    font-size:18px;
    font-weight: 600 !important;
    }
.contactphone a:hover {color: #000000;background-position: 0 100%;}
.contactphone a:hover .text-botton { display:none }
.contactphone a:hover .number-botton { display:block }
  .number-botton { display:none }
.mens {width:100%;display: flex;align-items: center;max-width:1450px;margin: auto;justify-content: flex-start;}
header .logo {
    /* width:100%; */
    margin: 0  4% 0 0;
    font-size: 34px;
    font-weight: bold;
    color: #000;
    height: 100px;
    display:flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.imglogo {width: 320px;height: 100px;position:relative;margin:auto;background: url(../immagini/logo.png) no-repeat center/contain;}
header .logo a {
    font-size: 34px;
    font-weight: bold;
    color: #000;
    text-decoration:none;
    font-style:italic;
    /* height: 50px; */
}

header .logo span {
    color: #ff5722;
}

 nav ul {
    display: flex;
    list-style: none;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    align-content: center;
    justify-content: center;
}

 nav ul li {
    margin: 0 15px;
    border:2px solid transparent;
    padding: 0px 15px;
    transition: border 0.8s ease;
}
 nav ul li:hover {
    margin: 0 15px;
    border:2px solid #fff
    
}

 nav ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.8s;
    font-weight: 100;
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: #fff;
   
}

header .menu-toggle {
    display: block;
    font-size: 24px;
    position: relative;
    cursor: pointer;
}
.hero img {
    width: 450px;
    height: auto;
    
    animation: zoomIn 1s ease-in-out forwards;
}
/* Menu Mobile */
@media (max-width: 1024px) {
 .content-nss .wrapper-content {
    width: 90%;
    margin: auto;
}
    .hero img {
    width: 90vw;
     
}
    .recensioni { flex-direction:column; gap: 5px}
    .newhero h4 { display:none; }
    .hero h1 {font-size: 34px !important;text-align: center !important;}
    .hero .sectiondesktop {height: 60%;/* display:none; */}
    .mobile-el { display:block !important }
     .desktop-el { display:none }
    .sectiondesktop h3 { font-size:28px; display:none}
    section {
      /* padding: 20px 0 !important; */
}
    .information {
    padding: 20px 0 0px 0 !important;
    
}
      #counterBlock {display: flex;flex-direction: column;height: auto !important;padding: 30px 0;gap: 10px !important;}
    .start-box02 {border-right:0 !important;/* border-bottom: 2px solid #ed1b24; */}
    .start-box02 div:first-child { font-size:30px !important}
    .start-box02 div{ font-size:12px !important}
    .testimonial:first-child { background:#eee}
    .testimonial:last-child {background:#eee} 
    .testimonial, .faq-item  {width: 100% !important;margin: auto !important;}
    .service-card  { width:100% !important}
 .whatsapp-btn {
  width:60px;
  height:60px;
  display:flex;
  transition: transform 0.3s ease-in-out;
  animation: popupEffect 3s ease-in-out infinite;
  border-radius: 50%;
}
    .service-card .fas {
     color: #ffffff !important;
}
      .grid-colon {display:flex;gap: 20px !important;width: 100vw;flex-direction:column}
    .rows-info a { font-size:20px !important}
        .noteinfo .itemgrid-colon { padding:60px 20px !important}
    .itemgrid-colon h2 {font-size:22px !important;margin: 0;}
   .itemgrid-colon {width: 90% !important;margin:0 5%; padding:10px 0 !important; border-bottom:1px solid #ddd}
    .itemgrid-colon:last-child { border:none;}
    .newsletter .fas{ color:#0089ff !important}
    .menu-toggle  .fas {
     color: #ffffff !important;
}
    .cerchio{ background:#000}
    .fa-solid, .fas {
     color: #fff !important;
}
    .mobileheader {display: none;}
    header .logo {
    font-size: 34px;
    font-weight: bold;
    color: #000;
    height: 50px;
    display:flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
}
.imglogo {width: 208px;height:56px;display:flex;position:relative;margin:0px 0;background: url(../immagini/logo.png) no-repeat center/contain;align-content: center;justify-content: center;align-items: center;}
header .logo a {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-decoration:none;
    font-style:italic;
    height: 50px;
}
    .products { padding : 30px 0 30px 0 !important}
    .products p { margin:10px}
    .services {padding: 20px 0 !important;}
    .hero {margin-top:0 !important;}
    .absolute { margin:0 !important; width:100% !important; padding:0 !important}
.elementor-widget-container h2  {margin:0 5%;font-size:20px !important}
    .elementor-widget-container p {margin:10px 5%; width:90% !important; font-size:16px !important}
  .infoproduct .product-grid {width: 100% !important;margin:auto}
    .jotformclas .product-grid { width:90% !important; margin:auto}
    .product-grid {
    /* display: flex !important; */
    flex-direction: column;
 
    }

    .b-row {
    height: 50vh !important;
    width: 100%;
}
    #image_slide {height: 100% !important;width:100%}
    .wrapper-content {
    width: 100%;
    margin: auto;
}
    nav {position:fixed;width:100%;height: 50vh;display: none;background: #1c1c1c;left:0;top:0px;/* backdrop-filter: blur(10px); */}
    header .menu-toggle {
        display: block;
        z-index: 999999;
        color: #000;
    }
   @keyframes popupEffect {
  0%, 100% { transform: scale(1); }
  10%, 30%, 50% { transform: scale(1.3); }
  20%, 40% { transform: scale(1); }
}
    .elementor-widget-container {/* padding: 30px 0; *//* top:40px; */position:relative;}
    
    
   

@keyframes repeatPopup {
  0%, 72.72% { opacity: 1; }
  72.73%, 100% { opacity: 0; }
}

.whatsapp-btn-container {
  animation: repeatPopup 11s infinite;
  animation-delay: 8s;
}

 

.whatsapp-btn i {
    margin: auto;
 
    
}
    .ss { display:none }
.sectionmobile { display: flex !important; flex-direction: column; position: relative; gap: 20px; }
    .newhero 
    .hero h1 {
     /* text-align:center; */
     line-height: 1.1;
}
    header nav ul {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        /* background: black; */
        overflow: hidden;
    }

    header.nav-open nav ul {
        height: calc(100vh - 70px);
    }

    header nav ul li {
        margin: 1px 0;
        text-align: left;
    }
    header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 100;
    padding: 5px 0;
}
}
.line-ico { width:200%; right:-10%; height:150px; position:absolute; bottom:-140px; background:#fff;  transform: skew(0deg, -3deg);}

/* Hero Section */


.newhero .btn {  background-image: linear-gradient(to right, #ed1c24 50%, #b10000 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
            transition:all 0.5s linear; color: #fff;padding: 10px 20px;text-decoration: none;font-size: 18px;border: none; cursor: pointer;  display: flex;align-items: center;gap: 10px; justify-content: center;text-transform: uppercase;align-content: center;margin: 20px auto;}

  .newhero .btn .fas {
        color: #fff !important;
    }
.newhero .btn i {
    font-size: 20px;
}

.newhero .btn:hover {
  color:#fff; background-position: 0 100%;
}
.content-chisiamo {/* padding:50px 0px 50px 50px; */color:#000;text-align:justify;/* border-top:1px solid #0056b3; *//* border-left:1px solid #0056b3; */width: 100%;}
.chisiamo .service-card {/* background:#323232; */}
.chisiamo{width:80%;margin:40px auto;position:relative;display:flex;gap: 50px;flex-direction: row;}
.text-chisiamo {width: 100%;position:relative;color:#000;/* height: 140px; */text-align:left;/* font-size: 50px; *//* font-weight:600; *//* text-transform:uppercase; *//* border-bottom: 2px solid #0056b3; */}
.titoloazienda { font-size:14px; text-transform:uppercase}
.titleazienda {font-size: 40px;font-weight:bold;line-height: 1.2em;} 
.descrizione-azienda { text-align:justify }
.newhero  {
    /* margin-top: 90px; */
    /* height: 400px; */
    /* background: #ededf1; */
    /* background-repeat: no-repeat; */
    /* background-position: 50% 0%; */
    /* background-size: cover; */
    /* background-color: rgba(0, 0, 0, 0.95); */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    color: #fff !important;!i;!;
    /* gap: 40px; */
}
.newhero h4 { font-size:20px;  }
.newhero .sectiondesktop { width:80% }
.progress {
    height: 20px !important;
    background: none !important;
    border:1px solid  var(--secondary);
    border-radius: 0px !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    width:50%;
}
.meta {display:flex;justify-content: space-between;align-items: center;}
.absolute {/* width:80%; */padding: 0 10%;}
.sr {  height:auto;}
.absolute { max-width:1300px; margin:auto;}
.hero {
    position: relative;
    padding: 0;
    min-height: 60vh;        /* meglio vh che % */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff !important;
    overflow: hidden;        /* per non far uscire il video */
}

/* Video di sfondo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* Contenuto sopra il video */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

h1, p {
    text-align: center;
    margin-bottom: 20px;
}

.catalog-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #20201e;
}

h1 {
    font-size: 2rem;
    color: #cddc39;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.car-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 1420px;
    margin: auto;
}

.card {
    /* background-color: #fff; */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    gap:40px
}
.card-img  {width:100%;display: flex;justify-content: flex-start;flex-direction: row;}
 .card-cont {width:80%;display:flex;flex-direction:column;align-items: flex-start;justify-content: space-evenly;}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.card h2 {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #ffffff;
    text-transform: uppercase;
    margin:0;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    color: #ddd;
    margin-top: 10px;
}
.elementi-p {display:flex;margin:auto;flex-direction:column;align-items: flex-start;align-content: flex-start;width: 100%;}
.p-el {display:flex;width:100%;flex-direction: row;align-items: center;justify-content: flex-start;padding:20px 0;border-bottom:1px dashed #555;gap: 20px;}
.img-el .fas {font-size:32px;color: #cddc39 !important;padding:10px;border-radius:4px;border:1px solid #cddc39}
.title-el { color:#fff; font-size:20px; font-weight:bold;}
 .stats-section {
     
      color: #fff;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
      gap: 80px;
      text-align: left;
    }

    .stat-box {
      text-transform: uppercase;
      font-size: 18px;
      line-height: 1.3;
    }

    .stat-number {
      display: block;
      font-size: 42px;
      font-weight: bold;
      color: #CDDC39;
      margin-bottom: 8px;
    }
.card a {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #000;
    transition:all 0.5s ease;
    font-weight: bold;
    padding:10px 20px;
    background: #ffffff;
    font-size:18px;
    border-radius:4px;
    text-transform:uppercase;
}
 
.approfondisci  {
    background:transparent !important;
    border:none;
  position: relative;
  width: 20px;       /* larghezza totale */
  height: 14px;  
    top:3px;
    margin:0px 0px 0 18px;
    cursor:pointer;
}

/* le due linee che formano la freccia */
.approfondisci::before,
.approfondisci::after {
  content: "";
  position: absolute;
  width: 3px;                /* spessore linea */
  height: 14px;               /* lunghezza linea */
  background-color: #000000;  /* colore freccia */
  top: 50%;
  left: 50%;
  transform-origin: center;
  border-radius: 2px;
}

/* linea superiore (/) */
.approfondisci::before {
  transform: translate(-50%, -40%) rotate(45deg);
}

/* linea inferiore (\) */
.approfondisci::after {
  transform: translate(-50%, -100%) rotate(-45deg);
}
 

 

.card:hover {
    transform: translateY(-10px);
}
.card a:hover {
    background: #CDDC39;
}
/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .car-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .car-cards {
        grid-template-columns: 1fr;
    }
.card:first-child,.card:last-child { flex-direction:column !important; }
    .card {
        padding: 0px;
        flex-direction:column-reverse;
        display: flex;
        justify-content: center;
        align-items: center;
    }
.card-cont {width:100%;display: flex;align-items: center;}
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

.products h1 {margin: 30px;line-height:1.2em}


.hero h1 {
    font-size: 50px;
    line-height: 1.2;
    animation: slideUp 1.5s ease-in-out forwards;
    color: #CDDC39;
    text-align: left;
    text-transform:uppercase;
    margin: 0;
}
.hero h2 {
    margin: 10px 0;
    font-size: 30px;
    line-height: 1.2;
    animation: slideUp 1.5s ease-in-out forwards;
    color: #ffffff;
    font-weight:400;
    text-transform:uppercase;
    text-align: center!important;
    width:60%;
}

.hero h1 span {
    color: #ed1c24;
}

.hero p {
    font-size: 18px;
    color:#ddd;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out forwards;
    text-align: justify;
}
.request-motor a {  background-image: linear-gradient(to right, #ed1c24 50%, #b10000 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
            transition:all 0.5s linear; color: #fff;padding: 10px 20px;text-decoration: none;font-size: 16px;border: none; cursor: pointer;  display: flex;align-items: center;gap: 10px; justify-content: center;text-transform: uppercase;align-content: center;margin: 0px auto;}
.request-motor a:hover {
  color:#fff; background-position: 0 100%;
}
.rtext {
    color: #fff;
    font-size:40px;
    line-height:1.1em
}
.iscrizione-asi .btn {
    background: #fff;
    transition:all 0.5s linear;
    margin:auto;
    color: #2a3840;
    padding: 5px 20px;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    justify-content: center;
    text-transform: uppercase;
    align-content: center;
    /* margin: 20px 0; */
    border-radius: 4px;
    }
.iscrizione-asi .btn:hover { background:#e0af18 }
 .iscrizione-asi .btn .fas {
        color: #fff !important;
    }
.iscrizione-asi.btn i {
    font-size: 20px;
}

.iscrizione-asi .btn:hover  .plus-sign {
  
  left:10px;
       
   
}
.hero .btn {
    background: #fff;
    transition:all 0.5s linear;
     
    color: #2a3840;
    padding: 5px 20px;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    justify-content: center;
    text-transform: uppercase;
    align-content: center;
    margin: 20px 0;
    border-radius: 4px;
    }
.hero .btn:hover {background: #CDDC39;}
   .hero .btn .fas {
        color: #fff !important;
    }
.hero .btn i {
    font-size: 20px;
}

.hero .btn:hover  .plus-sign {
  
  left:10px;
       
   
}

.btnnw {background:#000;padding:10px 20px;width: 250px;display:flex;flex-direction:row;color:#fff;text-decoration:none;text-transform:uppercase;align-content: center;justify-content: center;align-items: center;margin: 20px auto;}
.btnnw  .plus-sign::after {
   
  background-color: #fff;
        
   
}.btnnw  .plus-sign::before {
   
  background-color: #fff;
        
   
}
/* --- Stili per la Sezione Servizi --- */
.hero .services { background:#fff}
.services,.ricambi-tipo-section {
    padding: 80px 0;
    background: #e4e7ed;
    text-align: center;
}
.iscrizione-asi  {
    padding: 80px 0;
    background: url(../immagini/background_home_bottom.jpg) no-repeat center/cover;
    text-align: center;
    height:600px
}
.iscrizione-asi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* nero 50% trasparente */
  z-index: 0;
}

.service-card-s h2 { font-size:16px; text-transform:uppercase; color:#33439b !important; margin:0 }
.service-card-s h4 { font-size:16px; text-transform:uppercase; color:#646464 !important; margin:0 }
.services h2 {color: #111111; text-align:center !important}
 .title_section {
    /* display: grid; */
    grid-template-columns: 1fr 1fr; /* due colonne uguali */
    gap: 100px;
    /* width: 80%; */
    margin: auto;
    align-items: center;
    justify-items: center;
}
 .title_section img { width:80%}
 .title_section h2 {text-align: center !important;width: 100%;/* font-weight:400; */}
 .title_section p {text-align:justify !important;}
.information {
    padding: 20px 0 0px 0;
    background: #fff;
    text-align: center;
}
.grid-colon-contact p {color: #fff;}
.grid-colon-contact {width:90%;margin:auto;display:flex;flex-direction:column;gap:10px;color:#fff;text-align:center !important;align-items: flex-start;}
.grid-colon-contact h2 {width: 100%;margin:auto;color: #fff;text-align: left!important;}
.grid-colon-contact a {color: #fff;background: #0a283a;text-transform:uppercase;font-weight:bold;padding:10px 20px;text-decoration:none;transition:all 0.5s ease}
.grid-colon-contact a:hover {background: #0b2d42;}
.adgg_fpo {background: #cb6d71;display:flex;}
.rows-info { margin:50px auto; position:relative}
.recensioni-block {margin:30px 5%;display:flex;flex-direction:column;/* gap:20px; */}
.recensioni-block h2 { margin:0 auto !important; }
.recensioni-block p { font-size:16px !important; line-height:1.8em}
.rows-info a { color:#fff; transition:all 0.5s ease; text-decoration:none; font-size:28px;font-weight:600; text-transform:uppercase;}
.rows-info a:hover {color: #000000;}
.services .cont-product-card {
    margin:50px 0;
    gap: 10px;
}
.services .service-grid {
     /* background: #444; */
     color:#fff !important
}
.services .cont-product-card h3{
    
    color:#fff !important
}
.services .cont-product-card p{
    
    color:#ccc !important
}

.service-grid-s{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonne uguali */
    gap: 20px; /* spazio tra gli elementi */
    width: 80%;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 10px; */
    flex-direction: row;
    margin: auto;
    min-width: 1000px;
}
.content-chisiamo  .service-grid {
     gap: 10px;
     flex-direction:row;
     /* display:grid; */
     /* grid-template-columns: repeat(2, 1fr); */ /* 3 colonne uguali */
}
.content-chisiamo  .service-grid a {
     width:100%
}
.content-chisiamo .service-grid div:hover {border-right: none;}
.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 20px; */
    /* flex-direction: row; */
}
.ricambiauto h3 {color: #ff5722 !important;font-weight:600;font-size: 20px !important;}
.ricambiauto .cerchio {background: #ff5722;border: 2px solid #ff5722;box-shadow: 0px 0 10px #00000030;}
.ricambiauto .cerchio  i {color: #fff;}
.service-card h3 {color: #000;text-align:center;font-size: 16px;text-transform: uppercase;}
.service-card-s  .cerchio {border: 2px solid #ffffff;}
.service-card-s .cerchio:hover {background: #000000;border: 2px solid #000;}
.service-card-s .cerchio:hover i { color:#fff }
.cerchio {border: 2px solid #000;position:relative;display: flex;width: 100px;height: 100px;border-radius:60px;margin: 0 auto;transition:all 0.2s linear}
.cerchio:hover {background: #ff5722;border: 2px solid #ff5722;}
.cerchio:hover i {color: #fff;}
.foto1 { background:url(../immagini/allmotori.jpg) no-repeat center/cover}
.foto2 { background:url(../immagini/range-22.jpg) no-repeat center/cover}
.foto3 { background:url(../immagini/img-bmw.jpg) no-repeat center/cover}
.foto4 { background:url(../immagini/img-renault-dci.jpg) no-repeat center/cover}
.service-cards {height: 500px;position:relative;display:flex;width: 100%;}
.centerb {/* margin-top:100px !important; */}
.service-card-s:first-child {/* margin-top:0; */}
.service-card-s:last-child { margin-top:0}
.imagesarticolo { width:100%; overflow:hidden }
.imagesarticolo img { width:100%;   }
.aprodotto { text-decoration:none }
.service-card-s {
    color: #fff !important;
    /* padding:20px 0; */
    width: 100%;
    background:#fff;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    cursor:pointer;
    border: 1px solid #e9e9fe;
}
.service-card-s:hover { border:1px solid #dadde3; background:#edf0f7; box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1); }
.service-card-s:hover.service-card-s h3 { color:#5e637e}
.chisiamo .service-card {display:flex;/* flex-direction:column; */}
.chisiamo .service-card .textmotor {   display:flex; flex-direction:column }
.chisiamo .service-card h2{font-size:20px;border-right:0 !important;color:#fff; }
.chisiamo .service-card  p {color:#fff;font-size:20px !important }
.service-card {
    /* background:#222222; */
    /* padding:100px 10px; */
    color: #ffffff;
    width: 100%;
    /* padding: 10px; */
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

.service-card:hover {
    
   width:101%;
}

.service-card i {
    font-size: 40px;
    margin:auto;
    position:relative;
    color: #000;
    transition:all 0.1s linear
}
.service-card-s i {
    font-size: 40px;
    margin:auto;
    position:relative;
    color: #ffffff;
    transition:all 0.1s linear
}

/* --- Stili per la Sezione Testimonianze --- */
.testimonials {
    /* background: #f1f1f1; */
    text-align: center;
}
.recensioni {position:relative;display:flex;border-bottom: 1px solid #ddd;}
.testimonial {
    /* background: white; */
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial h4 {
    color: #ed1c24;
    text-align:center;
}

/* --- Stili per la Sezione FAQ --- */
.faq {
    background: white;
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #f1f1f1;
    /* margin: 0 auto 10px auto; */
    padding: 15px;
    border-left: 4px solid #ed1b24;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    background: #ddd;
}

/* --- Stili per la Sezione Newsletter --- */
.newsletter {
    color: white;
    text-align: center;
}

.newsletter form {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-direction: row;
    gap: 20px;
    align-content: center;
    align-items: center;
}

.newsletter input {
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.newsletter input:focus {
   
    border: none;
   outline:none
}
.newsletter button {
    margin:0;
    background: white;
    color: #007bff;
    border: none;
    padding: 10px 15px; 
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    border:none !important;
    background: #0056b3 !important;
    color: white;
}

/* --- Stili per il Contact Form --- */
.contact {
    background: #fff;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background: #0056b3;
}
/* Sections */
.intro {height: auto !important;!i;!;background:rgb(69 140 85) !important;display:flex;margin-top: 100px;position:relative}
.intro .testopage {height:auto !important;margin: 80px auto;position:relative;width:auto;display:flex;justify-content: center;align-content: center;align-items: center;}
.b-row {background:#eee;padding: 0 !important;height: 500px;}
#image_slide {height: 100%;width:100%}
 
#content_slide, .container_slide,.imgsliderdiv {width:100%;position:relative;display:flex;height:100%;background:#111;}
 .imgsliderdiv::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 0;
        }
.testopage {width: 90%;position: absolute;display:flex;height:100%;bottom: 0;justify-content: flex-start;align-items: flex-end;margin: 0 5%;}
.text-page {color:#fff;position:relative;display:flex;font-size: 40px;font-weight:bold; text-transform:uppercase; background: none;padding:25px 40px;/* margin:20px 0; *//* border-top:2px solid #ffffff; *//* border-left:2px solid #ffffff; *//* align-items: center; */}
.slidew { width:100%; position:relative; display:inline-block; height:100% }
.imgsliderdiv:before {background: #00000090;}
.imgsliderdiv { background-size:cover !important;}
.jotformclas { background:#eee}
.jotformclas .product-grid { width:80%; margin:auto}
.jotformclas .content-jotform {border: 4px solid #a728283d;background: #a728283d;padding:0 5%; }
.b-roww { width:100%; height:auto; padding:0 }
.b-rows {padding:0;/* margin-top: 180px; */}
#content-html .secondary-color {margin-top: 20px !important}
.content-ns {display:flex;margin: 0px auto;max-width:1450px}
.ricambiinfo { padding: 30px 0 60px 0}
.ricambiinfo h2 { text-align:center !important; margin:auto}
.ricambiauto h2 { text-align:center !important }
.ricambiinfo .product-card { background:#fff; gap:50px;width:80%; margin:auto}
.ricambiauto { background:#eee}
.service-grid div:last-child { border:none}
.service-grid div {/* border-right: 6px solid #222222; */}
.service-grid div:hover {border-right: 6px solid #ff5722;}
.ricambiauto  .service-grid {
 width: 96%;
 margin: 10px auto; 
 display:grid;
    grid-template-columns: repeat(4, 1fr); /* 3 colonne uguali */
    gap:10px
 }
@media (min-width:1024px) and (max-width:1450px) {
  .ricambiauto .service-grid {
    width: 96%;
    margin: 10px auto; 
    display: grid;
    grid-template-columns: repeat(2, 2fr) !important;
    gap: 10px;
  }
}
.ricambiauto p {width:80%; margin:auto}
.contattacisu {background: url(../immagini/OFFICINA-rettifica-Piemonte-Buccinasco-004-1920w.webp) no-repeat center/cover;margin:50px auto;padding: 220px 20px;}  
.contattacisu::before {content: "";
  position: absolute;
 top:0;
    left:0;
  width: 100%;
  height: 100%;
   
    background:#00000070; z-index:-1}
.stats::before {
  content: "";
  position: absolute;
 top:0;
    left:0;
  width: 100%;
  height: 100%;
  background: #00000070; /* blu acceso */
  border-radius: 3px;
}
.intro-section,.mission-section,.choose-section { padding:0}
.motori-garantiti {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* TESTO */
.motori-text {
  flex: 1 1 55%;
  z-index: 2;
}

.motori-text h2 {
  font-size: 2.3rem;
  color: #f7b500;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: capitalize; /* effetto tipo ucwords */
  line-height: 1.3;
}

.motori-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.motori-text strong {
  color: #0b1a3a;
}

.motori-text ul {
  list-style: none;
  margin-top: 1.5rem;
}

.motori-text ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #000;
  position: relative;
  padding-left: 1.2rem;
}



/* IMMAGINE */
.motori-img {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.motori-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}

.motori-bg-outline {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 4px solid #f7b500;
  top: 5%;
  right: -5%;
  z-index: 1;
  transform: rotate(3deg);
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .motori-garantiti {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;

  }

  .motori-text {
    flex: 1 1 100%;
  }

  .motori-img {
    margin-bottom: 2rem;
  }

  .motori-bg-outline {
    display: none;
  }
}

@media (max-width: 600px) {
  .motori-text h2 {
    font-size: 1.7rem;
  }

  .motori-text p,
  .motori-text ul li {
    font-size: 0.95rem;
  }
}
/* -------------------- */
/* SEZIONE PRODOTTO */
/* -------------------- */
.prodotto {
  max-width: 1300px;
  margin: 140px auto 50px auto;
  padding: 2rem;
  /* background: #fff; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

/* HEADER PRODOTTO */
.head-prodotto {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.urldestination {
  font-size: 0.9rem;
  color: #666;
}
.urldestination a {
  font-size: 1rem;
  color: #666;
    text-decoration:none;
}

.titolo-prodotto h2 {
  font-size: 2rem;
  color: #0b1a3a;
  text-transform: capitalize;
}

/* STRUTTURA PRINCIPALE */
.struttura-prodotto {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* SLIDE IMMAGINE SINISTRA */
.slide-prodotto {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-prodotto img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  object-fit: contain;
}

/* LAYOUT DESTRO */
.layoutdestro-prodotto {
  flex: 1 1 50%;
}

.titoloprod {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.infotitolo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
/* SECTION BASE */
.tipotrebbeinteressareanche {
  max-width: 1300px;
  margin: 3rem auto;
  padding: 2rem;
  /* background: #fff; */
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.tipotrebbeinteressareanche h2 {
  font-size: 2.8rem;
    text-transform:uppercase;
  margin-bottom: 2rem;
  color: #0b1a3a;
  font-weight: 500;
}

/* GRID PRODOTTI */
.griglia-prodotti {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* CARD PRODOTTO */
.card-prodotto {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}

.card-prodotto:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* IMMAGINE */
.img-box {
  width: 100%;
  height: 250px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.card-prodotto:hover img {
  transform: scale(1.05);
}

/* INFO BOX */
.contattihead .info-box {
  padding: 1rem;
  text-align: center;
  display: flex;
    border-bottom:0;
    background:none 
}
.contattihead .info-box:hover {
  padding: 1rem;
  text-align: center;
  display: flex;
    border-bottom:0
}
.info-box h3 {
  font-size: 1rem;
  color: #0b1a3a;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.info-box .prezzo {
  color: #f7b500;
  font-weight: 700;
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .img-box {
    height: 200px;
  }

  .tipotrebbeinteressareanche h2 {
    text-align: center;
    font-size: 1.6rem;
  }
}

.infotitolo h3 {
  font-size: 1.5rem;
  color: #0a1a3a;
    font-weight:600;
    text-align:justify
}

.infotitolo h4 {
  font-size: 1.4rem;
  color: #e90000;
  font-weight: bold;
}
.extrainfo p { text-align:left;}
/* DISPONIBILITA' */
.disponibilita {
  background-color: #d4edda;
  color: #155724;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  width: fit-content;
}

/* INFO EXTRA */
.extrainfo p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5; margin:0
}

/* BOTTONE ACQUISTA */
.acquista {
  margin-top: 1rem;
}
.fotopagamenti { margin:0; padding: 80px 0; 
background:url(../immagini/pagamentisicuri.jpg) no-repeat center #ececec; 
    width:100%; height:100px; border-radius:10px}
.acquistawp {
  display: inline-block;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.acquistawp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* TAG */
.extratag {
  /* margin-top: 1rem; */
  font-size: 0.9rem;
  color: #888;
}

.extratag::before {
  content: "Tag: ";
  color: #0a1a3a;
  font-weight: 600;
}

/* -------------------- */
/* SEZIONE DESCRIZIONE */
/* -------------------- */
.titledescr { position:absolute; top:-17px; font-weight:bold; text-transform:uppercase; color:#0c163c;font-size:20px; background:#fff; padding:0 10px}
.descrizioneprodotto {
  max-width: 1300px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  /* border-radius: 10px; */
  border-top: 2px solid #241863;
}

.descrizioneprodotto p {
  font-size: 1.2rem !important;
  color: #000; text-align:justify
}

/* -------------------- */
/* RESPONSIVE DESIGN */
/* -------------------- */

/* Tablet */
@media (max-width: 992px) {
  .struttura-prodotto {
    flex-direction: column;
  }

  .infotitolo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .slide-prodotto img {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .prodotto {
    padding: 1rem;
      margin:70px 0
  }

  .titolo-prodotto h2 {
    font-size: 1.6rem;
  }

  .infotitolo h3 {
    font-size: 1.3rem;
  }

  .infotitolo h4 {
    font-size: 1.2rem;
  }

  .disponibilita {
    width: 100%;
    text-align: center;
  }

  .acquistawp {
    width: 100%;
    text-align: center;
  }
}
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  background: #f8f8f8;
  border-radius: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

.benefit img {
  /* width: 60px; */
  height: 60px;
  margin-bottom: 15px;
}

.benefit h3 {
  color: #f7b500;
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.2;
}

.benefit p {
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 240px;
}

.benefit strong {
  color: #000;
}

@media (max-width: 768px) {
  .benefits {
    padding: 30px 15px;
    gap: 20px;
  }

  .benefit h3 {
    font-size: 18px;
  }

  .benefit p {
    font-size: 13px;
  }
}
.quality-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.subtitle {
  color: #FF9800;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.title {
  font-size: 22px;
  font-weight: 700;
  color: #2b2b22;

  margin-bottom: 40px;
  text-align: left !important;
}
.title h1 {     line-height:1.0em !important; }

.quality-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.icon-box {
  min-width: 50px;
  height: 50px;
  background: #444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.icon-box img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.text-box h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #2b2b2b;
}

.text-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .quality-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-box {
    margin-bottom: 10px;
  }

  .text-box h3 {
    font-size: 18px;
  }

  .text-box p {
    font-size: 14px;
  }
}
/* --- SEZIONE AZIENDA --- */
.azienda-section {
  /* background: #f9fafb; */
  /* padding: 80px 20px; */
}

.azienda-section .container {
  /* max-width: 1100px; */
  margin: 0 auto;
  text-align: center;
}

.azienda-section .title {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.azienda-section .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f7b500;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* --- GRIGLIA FOTO --- */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .azienda-section .title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .azienda-section {
    padding: 60px 15px;
  }

  .azienda-section .title {
    font-size: 1.5rem;
  }
}
.preventivo-hero {
    text-align: center;
    padding: 180px 20px 90px;
    color: #0f3557;
    background:#000000;
    margin: 170px auto 0px auto;
}
.preventivo-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Cambia l'URL con la tua immagine */
    background: url('/immagini/sfondohero.jpg') center/cover no-repeat;

    opacity: 0.9; /* regolabile */
    z-index: -1;
}
/* BOX CENTRALE */
.preventivo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.preventivo-form {
    background: #fff;
    padding: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 60px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 1100px;
    flex-direction: row;
}

/* TAB PRIVATO / AZIENDA */
.tipo-cliente {
    display: flex;
    background: #e9eef3;
    padding: 6px;
    border-radius: 50px;
    gap: 8px;
    flex-shrink: 0;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #0f3557;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background: #003b63;
    color: #fff;
}

/* INPUT */
.input-nome {
    flex: 1;
    padding: 13px 18px;
    border-radius: 40px;
    border: 1px solid #ddd;
    font-size: 15px;
}

/* BOTTONE */
.btn-preventivo {
    margin:0 !important;
    background: #181e4d;
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 17px;
    white-space: nowrap;
    transition: background .3s;
}

.btn-preventivo:hover {
    background: #d75d1b;
}

/* DESCRIZIONE SOTTO */
.preventivo-desc {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 16px !important;color:#222 !important
    
}
 
/* --------------------------- */
/* RESPONSIVE MOBILE           */
/* --------------------------- */

@media (max-width: 768px) {

    .preventivo-form {
        flex-direction: column;
        padding: 25px 20px;
        border-radius: 30px;
    }

    .tipo-cliente {
        width: 100%;
        justify-content: space-between;
    }

    .input-nome {
        width: 100%;
    }

    .btn-preventivo {
        width: 100%;
    }
}
/* WRAPPER */
.gar4-section {
    text-align: center;
    padding: 70px 20px;
}

.gar4-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align:center !important;
}

.gar4-divider {
    width: 50px;
    height: 2px;
    background: #d4dce2;
    margin: 0 auto 40px;
}

/* SLIDER AREA */
.gar4-slider {
    display: flex;
    /* gap: 40px; */
    max-width: 1450px;
    margin: 0 auto;
    /* overflow: hidden; */
    position: relative;
    touch-action: pan-y;
}

.gar4-item {
    min-width: 25%;
    max-width: 25%;
    /* padding: 20px; */
    transition: transform .3s ease;
}

.gar4-icon {
    font-size: 50px;
    color: #2a3840;
    margin-bottom: 15px;
}

.gar4-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gar4-text {
    font-size: 15px;
    color: #425d72;
}

/* DOTS */
.gar4-dots {
    display:none;
    margin-top: 25px;
}

.gar4-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.gar4-dot.active {
    background: #ef6b22;
}

/* MOBILE */
@media (max-width: 900px) {
      .gar4-icon  .fas {
     color: #000 !important;
}
    .gar4-item {
        min-width: 100%;
        max-width: 100%;
    }
}

.servScroller-section {
    padding: 40px 0;
    text-align: center;
}

.servScroller-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
  text-align:center !important;
}

.servScroller-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px;
    cursor: grab;
}

.servScroller-wrapper::-webkit-scrollbar {
    display: none;
}

.servScroller-card {
    position: relative;
    min-width: 450px;
    height: 300px;
    background-size: cover;
    background-position: center;
    /* border-radius: 8px; */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.servScroller-info {display:flex;flex-direction:column;background: #00000070;width:100%;height:100%;align-items: center;justify-content: center;align-content: center;}
.servScroller-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    /* text-shadow: 1px 1px 5px #000; */
}

.servScroller-btn {
    background: #000;
    color: #fff;
    padding: 5px 18px;
    font-size: 13px;
    display: inline-block;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .servScroller-card {
        min-width: 85%;
        height: 240px;
    }

    .servScroller-info h3 {
        font-size: 22px;
    }
}
/* ====================== */
/*     SECTION WRAPPER    */
/* ====================== */

.contatto-info-section {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
}

/* BACKGROUND WORD */
.contatto-info-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem;
    font-weight: 800;
    color: #efefef;
    opacity: 0.4;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

/* TITLE */
.contatto-info-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.contatto-info-title span {
    color: #f7b500;
}

/* SUB TEXT */
.contatto-info-sub {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

/* PHONE NUMBER */
.contatto-info-phone {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* BUTTON */
.contatto-info-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.contatto-info-btn:hover {
    background: #000;
    color: #fff;
}

/* ====================== */
/*       RESPONSIVE       */
/* ====================== */

@media (max-width: 768px) {

    .contatto-info-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .contatto-info-bg {
        font-size: 6rem;
    }

    .contatto-info-phone {
        font-size: 24px;
    }

    .contatto-info-btn {
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {

    .contatto-info-title {
        font-size: 26px;
    }

    .contatto-info-bg {
        font-size: 4.5rem;
        opacity: 0.3;
    }

    .contatto-info-phone {
        font-size: 22px;
    }
}
/* =====================
   STRUTTURA BASE
===================== */

.about-section {
    max-width: 100%;
    margin: 100px auto 0px auto;
    padding: 40px 20px;
    background: #20201e;
}

.about-title {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.title-line {
    width: 48%;
    height: 3px;
    background: #c9d738;
    margin-bottom: 40px;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 20px auto;
}

/* =====================
   SLIDER 4 IMMAGINI
===================== */

.about-slider {
    width: 100%;
    max-width: 580px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height:400px; 
}

.slide img {
    height: 100%;
    width:100%;
    display: block;
    border-radius: 10px;
}

/* Pallini */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ef5a29;
}

/* MOBILE */
@media (max-width: 600px) {
    .about-slider {
        max-width: 100%;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}


/* =====================
   TESTO
===================== */

.about-text h3 {
    font-size: 25px;
    color: #c9d738;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    color: #d9d9d9;
    line-height: 1.55;
    margin-bottom: 15px;
}

/* =====================
   BOX STATISTICHE
===================== */

.about-stats {
    display: flex;
    justify-content: space-between;
    background: #d9c78e;
    padding: 35px 40px;
    /* border-radius: 8px; */
    margin-top: 40px;
}

.stat {
    text-align: center;
    flex: 1;
}

 

.stat-label {
    margin-top: 5px;
    font-size: 16px;
    color: #2a3840;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
    .gar4-dots {
    display:block;
    
}

.slide {
    min-width: 100%;
    height:250px; 
}
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-slider {
        margin: auto;
    }
}

@media (max-width: 1024px) {

    .about-title {
        font-size: 30px !important;
        text-align: center !important;
    }

    .title-line {
        margin: 0 auto 30px auto;
    }
 
.about-section {
    /* max-width: 1450px; */
    margin: 50px auto 0px auto;
    padding: 40px 20px;
}
    .about-text h3 {
        font-size: 22px;
    }

    .about-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }
}
.storia-section {
  padding: 60px 0;
  background: #fff;
  font-family: inherit;
}
.storia-section>.container{
    flex-direction:column 
}
.storia-section .storia_cont {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 20px;
  gap: 30px;
  align-items: flex-start;
}

.storia-section h2 {
  font-size: 35px;
  font-weight: 700;
  color: #2a3840;
  margin:0
}

.storia-section p {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0 80px 0;
  /* background: #000; */
}

/* SLIDER */
.slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0px;
  cursor: grab;
}

.slider::-webkit-scrollbar {
  display: none; /* invisibile come Apple */
}

/* CARD STILE APPLE */
.slide {
  flex: 0 0 calc(100vw - 160px);
  max-width: 900px;
  background: #0c0c0c;
  border-radius: 34px;
  overflow: hidden;
  scroll-snap-align: start;

  /* Ombra Apple */
  height: 500px;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* BOTTONI APPLE */
.btn-left,
.btn-right {
  position: absolute;
  bottom: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgb(42 56 64);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 10;
}

.btn-left:hover,
.btn-right:hover {
  background: rgb(224 175 24);
}

.btn-left {right: 60px;}
.btn-right {right: 0px;}

/* Responsive */
@media (max-width: 768px) {
    .slide img {
  width: auto;
  height: 100%;
  display: block;
}
.slider {
 
  padding: 0 0px;
 
}
  .slide {
    flex: 0 0 calc(100vw - 60px);
    height: 300px;
  }
  .btn-left {left: 0px;}
  .btn-right {right: 0px;}
}



/* Tablet */
@media (max-width: 992px) {
     .storia_cont {
   
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  padding: 0 20px;
  gap: 10px;
  align-items: flex-start;
}
  .storia-section h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .storia-gallery {
    flex-direction: column;
    gap: 20px;
  }

  .storia-section p {
    font-size: 16px;
  }

  .storia-section h2 {
    font-size: 24px;
  }
}
/* SEZIONE GENERALE */
.steps-section {
  background: #202020;
  padding: 80px 15px 120px;
  color: #fff;
  text-align: center;
}

.steps-container {
  max-width: 1420px;
  margin: 0 auto;
}

/* TITOLI */
.steps-kicker {
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: #b7b7b7;
  text-align: center;
}

.steps-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #cddc39;
  margin-bottom: 16px;
  text-align: center !important;
}

.steps-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: center;
}

/* RIGA STEP */
.steps-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* CARD STEP */
.step-card {
  flex: 1 1 0;
  max-width: 320px;
  position: relative;
  padding-top: 10px;
  transform: translateY(30px);
  opacity: 0;
  animation: stepEnter 0.7s ease-out forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.25s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }

/* linea tratteggiata tra le card */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -20px;
  bottom: -15px;
  border-right: 2px dashed rgba(255, 255, 255, 0.35);
}

/* IMMAGINE */
.step-image {
  position: relative;
  height: 200px;
  border: 3px solid #cddc39;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  filter: grayscale(1);
  transition:
    filter 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* overlay leggermente scuro sull'immagine */
.step-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.4s ease;
}

/* BADGE NUMERO */
.step-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: #000000;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}

/* TESTO SOTTO */
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #fff;
}

.step-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d0d0d0;
}

/* HOVER ANIMATIONS */
.step-card:hover .step-image {
  filter: grayscale(0);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.step-card:hover .step-image::before {
  background: rgba(0,0,0,0.1);
}

.step-card:hover .step-badge {
  transform: translate(-50%, -50%) translateY(-6px);
  background: #cddc39;
  color: #000000;
  box-shadow: 0 16px 30px rgba(0,0,0,0.7);
}

/* ANIMAZIONE INGRESSO */
@keyframes stepEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .steps-row {
    gap: 30px;
  }

  .step-card:not(:last-child)::after {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 360px;
  }

  /* niente linea tratteggiata in verticale sul mobile */
  .step-card::after {
    display: none;
  }
}

.sezione-servizi {
  padding: 80px 15px 120px;
  background-color: #151515;
  background-image:
    url(../immagini/43471843_m.jpg);
  background-position: bottom center;
  background-repeat: repeat;
  background-size: 21% auto;
  /* text-align: center; */
}

.servizi-container {
  max-width: 1420px;
  margin: 0 auto;
}

.servizi-kicker {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #b7b7b7;
  text-align: center;
}

.servizi-titolo {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #cddc39;
  margin-bottom: 18px;
  text-align: center !important;
}

.servizi-sottotitolo {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #e5e5e5;
}

/* GRID */
.servizi-griglia {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.servizio-box {
  position: relative;
  padding: 30px 25px;
  border: 2px solid #cddc39;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transform-origin: center;
  transform: translateY(30px) scale(.98);
  opacity: 0;
  animation: cardIn 0.7s ease-out forwards;
  box-shadow: 0 18px 30px rgba(0,0,0,0.45);
}

.servizio-box:nth-child(1) { animation-delay: .1s; }
.servizio-box:nth-child(2) { animation-delay: .2s; }
.servizio-box:nth-child(3) { animation-delay: .3s; }
.servizio-box:nth-child(4) { animation-delay: .4s; }
.servizio-box:nth-child(5) { animation-delay: .5s; }

.servizio-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  background: #cddc39;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .25s ease-out;
}

.servizio-box:hover::after {
  transform: scaleX(1);
}

/* varianti colore */
.servizio-box--scuro {
  background: #151515;
  color: #ffffff;
}

.servizio-box--scuro .servizio-icona {
  border-color: #cddc39;
  color: #cddc39;
}

.servizio-box--rosso {
  background: #cddc39;
  color: #000000;
}

.servizio-box--rosso .servizio-icona {
  border-color: #000000;
  color: #000000 !important;
}
.servizio-box--rosso .servizio-icona .fas {
   
  color: #000000 !important;
}
.servizio-box--bianco {
  background: #ffffff;
  color: #000000;
}

.servizio-box--bianco .servizio-icona {
  border-color: #000000;
  color: #000000;
}
.servizio-box--bianco .servizio-icona .fas {
 
  color: #000000 !important;
}
.servizio-box--largo {
  grid-column: span 2;
}

/* contenuti box */
.servizio-icona {
  width: 60px;
  height: 60px;
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.7rem;
  transition: transform .25s ease-out;
}

.servizio-titolo-box {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* hover */
.servizio-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 45px rgba(0,0,0,0.6);
}

.servizio-box:hover .servizio-icona {
  transform: scale(1.08) rotate(-3deg);
}

/* animazione ingresso */
@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .servizi-griglia {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .servizio-box--largo {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .sezione-servizi {
    padding: 60px 10px 80px;
  }

  .servizi-griglia {
    grid-template-columns: 1fr;
  }

  .servizio-box,
  .servizio-box--largo {
    grid-column: auto;
  }

  .servizio-box {
    align-items: center;
    text-align: center;
  }
}
.skills-section{
      display:flex;
      align-items:stretch;
      min-height:320px;
      background: #cddc39;
      padding: 0;
    }
    .skills-image{
      flex:1;
      background:url("https://images.pexels.com/photos/210019/pexels-photo-210019.jpeg?auto=compress&cs=tinysrgb&w=1600")
                 center/cover no-repeat;
    }
    .skills-card{
      flex:1;
      background: #cddc39;
      padding:40px 50px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      color:#fff;
    }

    .skills-kicker{
      font-size:.8rem;
      letter-spacing:.25em;
      text-transform:uppercase;
      margin-bottom:8px;
    }
    .skills-title{
      font-size:clamp(1.8rem,2.6vw,2.4rem);
      font-weight: 600;
      /* margin-bottom:15px; */
      margin: 0;
    }
    .skills-text{
      font-size:.9rem;
      max-width:520px;
      line-height:1.6;
      margin-bottom:30px;
    }

    .skills-gauges{
      display:flex;
      gap:35px;
      flex-wrap:wrap;
    }
    .skill-item{
      text-align:center;
      min-width:90px;
    }

    /* GAUGE */
    .skill-gauge{
      position:relative;
      width: 120px;
      height:70px;
      margin:0 auto 8px;
      
    }
.skill-gauge::before{
  content:"";
  position:absolute;
  /* centro orizzontalmente l’80% */
  left: 16px;                /* (100% - 80%) / 2 */
  width: 88px;
  height: 44px;              /* regola a gusto */
  bottom: 5px;
  transform:translateY(0%);
  background:rgb(255 255 255);  /* colore sfondo, cambialo come vuoi */
  border-radius:50px 50px 0 0;     /* pill shape */
  z-index: 0;              /* rimane dietro a svg e testo */
}
    .skill-gauge svg{
      width:100%;
      height:100%;
      padding: 0;
      margin: 0;
    }
    .skill-track{
      fill:none;
      stroke:#ddd;
      stroke-width:6;
      /* stroke-linecap:round; */
    }
    .skill-bar{
      fill:none;
      stroke:#111;
      stroke-width:6;
      /* stroke-linecap:round; */
      stroke-dasharray:0;
      stroke-dashoffset:0;
    }

    .skill-value{
      position:absolute;
      left:50%;
      top: 60%;
      transform:translate(-50%,-50%);
      font-weight:800;
      font-size:.9rem;
      color: #000000;
    }
    .skill-label{
      font-size:.8rem;
      font-weight:700;
      text-transform:uppercase;
      color: #000;
    }

    /* RESPONSIVE */
    @media(max-width:900px){
      .skills-section{flex-direction:column;}
      .skills-image{min-height:220px;}
    }
    @media(max-width:600px){
      .skills-card{padding:30px 20px;}
      .skills-gauges{justify-content:center;}
    }
.ricerca { max-width:1400px; margin:auto ;}
section {
    padding: 60px 0px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    /* max-width:1450px; */
    margin:auto;
}
.services-section {
      padding: 70px 15px 100px;
      background: #202020 !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .services-wrapper {
      max-width: 1420px;
      width: 100%;
      position: relative;
      animation: cardEnter 0.8s ease-out forwards;
      opacity: 0;
      transform: translateY(30px);
    }

    /* BOX ROSSO PRINCIPALE */
    .services-card {
      background: #cddc39;
      display: flex;
      gap: 40px;
      padding: 40px 60px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 25px 40px rgba(0,0,0,0.45);
    }

    /* parte grigia inclinata */
    .services-card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -30%;
      height: 60%;
      background: #555;
      transform: skewY(-5deg);
      transform-origin: left top;
      z-index: 0;
    }

    /* IMMAGINE */
    .services-image {
      flex: 0 0 40%;
      position: relative;
      z-index: 1;
      overflow: hidden;
      border: 3px solid #cddc39;
      background: #000;
    }

    .services-image img {
      width: 100%;
      display: block;
      transition: transform 0.7s ease;
    }

    /* zoom leggero al hover */
    .services-card:hover .services-image img {
      transform: scale(1.05);
    }

    /* TESTO */
    .services-content {
      flex: 1;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .services-title {
      font-size: clamp(1.9rem, 2.6vw, 2.8rem);
      font-weight: 600;
      line-height: 1.2;
      color: #000000;
    }

    .services-text {
      font-size: 0.95rem;
      line-height: 1.5;
      max-width: 480px;
      color: #fff;
    }

    /* BOTTONE */
    .services-btn {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 30px;
      background: #ffffff;
      color: #000;
      border-radius: 6px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 8px 18px rgba(0,0,0,0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .services-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 25px rgba(0,0,0,0.35);
      background: #202020;
      color: #ffffff;
    }

    /* ANIMAZIONE IN INGRESSO */
    @keyframes cardEnter {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .services-card {
        flex-direction: column;
        padding: 30px 25px 60px;
        gap: 25px;
      }

      .services-image {
        flex-basis: auto;
        max-width: 100%;
      }

      .services-text {
        max-width: none;
      }
    }

    @media (max-width: 600px) {
      .services-section {
        padding: 40px 10px 70px;
      }

      .services-card {
        padding: 25px 18px 55px;
      }

      .services-title {
        font-size: 1.6rem;
      }

      .services-btn {
        width: 100%;
        justify-content: center;
      }
    }
.processo-wrapper {
    text-align: center;
    padding: 70px 20px;
    color: #0d2f4f;
}
.processo-wrapper .corpo-section { flex-direction:column}
/* TITOLO */
.processo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.processo-divider {
    width: 40px;
    height: 2px;
    background: #ccc;
    margin: 10px auto 20px;
}

.processo-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
    color: #000000;
    text-align: center;
}

/* STEP CONTAINER */
.processo-steps {
    display: flex;
    gap: 20px;
    max-width: 1450px;
    margin: 0 auto;
    justify-content: space-around;
    flex-direction: row;
}

/* STEP */
.processo-step {
    width: 280px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ICONA */
.processo-icon {
    font-size: 48px;
    color: #2a3840;
    margin-bottom: 20px;
}

.processo-step h3 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #2a3840;
}

.processo-step p {
    font-size: 14px;
    color: #2a3840;
    line-height: 1.5;
    min-height: 50px;
}

/* LINEA TRATTEGGIATA E NUMERI */
.processo-bottom {
    /* margin-top: 40px; */
    padding-top: 20px;
    border-top: 1px dashed #dcdcdc;
}

.processo-number {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin: auto;
    background:#2a3840;
    width:100px;
    height:100px;
    
    line-height:100px;border-radius:50%
}

/* ---------------------------- */
/* RESPONSIVE MOBILE */
/* ---------------------------- */

@media (max-width: 768px) {
    .processo-steps {
        flex-direction: column;
        gap: 50px;
    }

    .processo-step {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.motori-section {
   width: 100%;
  padding: 60px 10%;
    background:#e8ebf3;
  
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Each row (title left, text right) */
.motori-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  border-top: 2px solid #000;
  padding-top: 2rem;
}

/* Title column */
.motori-title {
  flex: 1;
  color: #2d7a1f;
}

.motori-title h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Text column */
.motori-text {
  flex: 2;
   
}

.motori-text p {
  color: #333;
  font-size: 1rem;
     text-align:justify !important
}

.motori-text strong {
  color: #000;
}

/* Responsive Design */
@media (max-width: 900px) {
  .motori-item {
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1.5rem;
  }

  .motori-title h2 {
    font-size: 1.3rem;
    text-align: left;
  }

  .motori-text p {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .motori-section {
    padding: 2.5rem 1rem;
    gap: 2.5rem;
  }

  .motori-title h2 {
    font-size: 1.2rem;
  }

  .motori-text p {
    font-size: 0.9rem;
  }
}
.infoproduct h4 { font-size:20px; font-weight:900; text-transform:initial; margin:0 5%; text-align:left;}
.infoproduct .product-grid {width:100%;margin:auto;/* background:#ddd; */}
.infoproduct .cont-product-card { height:100%;}
.infoproduct .cont-prod-card { margin:0 ;display:flex; flex-direction:column; gap:30px }
.infoproduct .cont-prod-card h2 { margin:40px 0 0 0}
.infoproduct .product-card { background:none}
.secondary-color {/* background: #212121; */}
.wwwa { padding:0}
.newsletter  h2 { color:#fff }
.mobile-el { display:none }
.form-step  h2 {margin:20px 0 !important;width: initial;padding:10px 20px;color: #000000 !important;font-size:20px !important;background: #cddc39;display: flex !important;justify-content: center;align-content: center;flex-wrap: wrap;}
.elementor-widget-container h2 {
    display:flex;
    gap: 5px;
    font-size: 28px;
    margin: auto;
    color: #fff;
    opacity: 0;
    animation: slideFromTop 1s ease-in-out forwards;
    line-height: 1.2em;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    text-align: center !important;
}
.divisor { width:100px; height:3px; margin:10px auto 20px auto; display:flex; gap:4px}
.start-box02 {position:relative;display:flex;gap: 15px;color:#fff;padding:0 15px;border-right: 2px solid #737373;justify-content: center;align-items: center;font-size:18px;height: 52px;}
.start-box02 div:first-child { font-size:60px }
.start-box02 div:last-child { text-align:left; line-height:1.3em}
#counterBlock {background: #0c163c;display: flex;gap: 40px;height: 300px;align-content: center;justify-content: center;align-items: center;}

.divisor div:first-child { background:#ed1b24; height:3px; width:3px; }
.divisor div { background:#ed1b24; height:3px; width:3px; }
.divisor div:last-child { background:#ed1b24; height:3px; width:50px; }
.recensioni-block h2 { margin:40px 0}
.ricambiinfo h2 { font-size:36px; }
.ricambiinfo p { font-size:16px !important; }
.products h2 { color:#fff; width:auto; position:relative; margin:0 !important; width:80%}
.line-ds { height:2px; width:auto; position:relative; background:#fff; width:100%  }
.sssk {display:flex;gap:0px;justify-content: center;align-items: center;align-content: center;}
.products p { color:#fff !important }
.stats h2 {text-align: center !important;color:#fff}
section h2 {
    /* text-align: center !important; */
    font-size: 48px;
    margin: 20px auto;
    color: #000000;
    opacity: 0;
    animation: slideFromTop 1s ease-in-out forwards;
}
section h3 {
    text-align: center;
    font-size: 18px;
    /* margin-bottom: 20px; */
    color: #ffffff;
    opacity: 0;
    text-transform:uppercase;
    font-weight:200;
    animation: slideFromTop 1s ease-in-out forwards;
}
.descr-kit p {
    text-align: left;   
    margin-bottom: 2px;
   
}
.faq-item p {
    text-align: justify;
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideFromTop 1.2s ease-in-out forwards;
}
.b-rows h6 { font-weight:900 }
.cont-sss p { text-align:justify !important; height:100%}
.b-rows p {
    text-align: left;
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0;
    color:#333;
    animation: slideFromTop 1.2s ease-in-out forwards;
}
.servScroller-info p {
    text-align: left;
    font-size: 16px;
    color:#ddd;
    padding: 20px;
    opacity: 0;
    animation: slideFromTop 1.2s ease-in-out forwards;
}
.services p {width: 100%;margin: 40px auto;color: #000;font-weight:400;font-size:20px;position: relative;}
.service-card  p {width: 90%;margin: 0px auto;color: #ffffff;/* top: -20px; */position: relative;text-align: center;}
section p {
    text-align: left;
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideFromTop 1.2s ease-in-out forwards;
}

/* Products Section */

.products {
    background: #cb3939;
    padding: 20px 5% 5px 5%;
}
.noteinfo, .infoproduct {
    background: #fff;
}
 .infoproduct {
    background: #e9eaef;
    padding: 0 0 60px 0;
}
 .infoproduct h2 { text-align:center !important}
.infoproduct .product-card {flex-direction: column !important;}
.infoproduct .product-card .contents_spl:first-child {/* height:350px; */overflow:hidden;}
.grid-colon {display:flex;gap: 0;width: 100vw;flex-direction: column;}
.itemgrid-colon {display:flex;gap: 300px;flex-direction: row;width: 80%;margin:auto;padding: 40px 0px;}
.itemgrid-colon:first-child { flex-direction:row-reverse }
.itemgrid-colon:last-child { flex-direction:row-reverse }
.itemgrid-colon-d h3,h2 { text-align:left !important  }
 .itemgrid-colon-d p { margin:70px 0 20px 0; font-size:16px  }
.itemgrid-colon div:last-child { width:60% }
.itemgrid-colon div {width: 40%;overflow:hidden;}
.itemgrid-colon div img { width:100%;}
.itemgrid-colon a {color: #ff5722;text-transform:uppercase;font-weight:bold;border: 1px solid #ff5722;padding:10px 20px;text-decoration:none;transition:all 0.5s ease}
.itemgrid-colon a:hover {background: #ff5722;color:#fff}
.itemgrid-colon h2 {font-size: 30px;!;text-transform:uppercase;letter-spacing:-1px;line-height:1.2em}
.itemgrid-colon p {font-size: 18px;line-height:1.8em;text-align:justify}
@media only screen and (max-width: 1204px) {
    p, li,a, .descrizione-azienda  {
        /* font-size: 12px !important; */
    }
   
    .contenitoreform {
        display: grid;
        height:auto;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 5px !important;
        margin-bottom: 5px !important;
}
    .chisiamo { gap:100px}
}
.img-grid {/* height:300px; */}
.beige { background:#f0eee0;}
.red { background:#ed1b24;   }
.red h2 { color:#fff}
.red p { color:#fff}
.noir { background:#120f0f}
.noir h2 { color:#fff}
.noir p { color:#fff}
.infoproduct h4 { color : #000; font-size:30px; margin:0; font-weight:100;}
.product-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* gap: 20px; */
    justify-items: center;
    flex-direction: column;
}

.imgsupports {background:url(../immagini/chisiamo.jpeg) no-repeat center/cover;width: 400px;height: 250px;display:inline-block;position:relative}
.imgsupport {  width:100%; height:100%; display:inline-block; position:relative}
.contents_spl {width:100%;height:auto;position:relative;display:flex;flex-direction: column;}
.product-card:first-child {flex-direction: row;}
.product-card:last-child {flex-direction: row;}
.question-card {
    display:flex;
    width:100%;
    position:relative;
    overflow:hidden;
    /* height: 500px; */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards;
    flex-direction: row-reverse;
    gap: 10px;
}
.question-card img { width:100%}
.motoriusati .product-card {width: 80%;margin:auto;background:none;display: flex;align-items: center;}
.motoriusati .product-card  .contents_spl:first-child {width: 1000%;min-height:250px}
.motoriusati .product-card  .contents_spl .cont-sss { height:250px !important}
.motoriusati .product-card  .contents_spl .cont-sss p { height:100% !important}
.infoproduct .cont-product-card { margin:0 5%; width:90%}
.product-card {
    display:flex;
    width:100%;
    position:relative;
    overflow:hidden;
    /* height: 500px; */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards;
    flex-direction: row-reverse;
    background: #eaeaea;
}

.product-card img {
   
    width:100%;
    height:auto;
    transition: transform 0.3s;
    position:relative;
}
.hover-product-card { width:100%; position:absolute;    background: linear-gradient(to top, rgb(0 0 0 / 80%), rgb(0 0 0 / 0%)); height:100%; bottom:0}
.content-faq { display:flex; flex-direction:column; gap:8px}
.jotformclas .cont-prod-card {  padding:30px 0; background:#fffbe9  }
.jotformclas .cont-prod-card h1 {  margin:0 30px ;   }
.infoproduct .cont-sss { margin: 20px 0; text-align:justify !important}
.infoproduct .cont-sss ul { list-style:none; display:flex; gap:20px;  }
.infoproduct .cont-sss ul li {/* list-style:none; */width:100%;transition:all 0.5s;display:flex;flex-direction:column;gap:10px;background: #fff;padding: 20px;text-align:center;/* min-height: 400px; */}
.infoproduct .cont-sss ul li:hover {background: #555; color:#fff}
.cont-sss {display:flex;flex-direction: column;gap: 10px;height: 100%;margin: 30px;}
.offerte-list { text-align:left}
.licontss {display:flex;flex-direction: row;gap: 10px;}
.licontss p { margin:0 !important; }
.licontss h4 { text-align:left; font-size:18px !important; font-weight:bold; text-transform:initial}
.circle {/* background: #000000; */width:auto;height: 33px;display:inline-block;border-radius:60px;position:relative}
.licontss i {font-size:30px;/* margin: 12px 12px; */color: #000;/* border:3px solid #fff; */border-radius:20px}
.cont-product-card {
    display:flex;
    z-index:1;
    position: relative;
    width:100%;
    margin: auto;
    height: 100%;
    bottom:0;
    flex-direction: column;
    /* gap: 5px; */
    justify-content: space-between;
}
.cont-product-faq {
    display:flex;
    z-index:1;
    position: relative;
    width:100%;
    /* margin: auto; */
    height:auto;
    bottom:0;
    flex-direction: column;
    gap: 5px;
    justify-content: space-around;
}

 .infoproduct .cont-product-card h3 { margin:30px 0; text-transform: initial }
.cont-product-card h3 {
    margin:0 5%;
    font-size: 22px;
    position: relative;
    color: #000;
    text-transform: uppercase;
}

.cont-product-card p {
    font-size: 16px;
    color: #000;
    margin:0 5%;
    position: relative;
    text-align: justify;
}
.plus-sign {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 15px 15px 10px 0;
  display:flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  left:0;
  transition: all 0.5s;
}

.plus-sign::before,
.plus-sign::after {
  content: '';
  position: absolute;
  background-color: #2a3840;
  width: 20px;
  height: 2px;
  left: 0;
  top: 0px;
  transition: all 0.5s;
}

/* linea principale */
.plus-sign::before {
    transform-origin: right center;
  width: 14px;          /* accorciata per formare la punta */
  transform: rotate(-45deg);
  top: 6px;
  left: 5px;
}

/* parte inclinata = punta della freccia */
.plus-sign::after {
  transform-origin: right center;
  width: 14px;          /* accorciata per formare la punta */
  transform: rotate(45deg);
  top: 6px;
  left: 6px;
}

.cont-product-card .btn {
  background-image: linear-gradient(to right, #ff5722 50%, #000000 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition:all 0.5s linear;
  color: #fff;
  padding: 5px 20px;
  text-decoration: none;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-transform: uppercase;
  align-content: center;
  margin: 10px auto;
  }
 

.product-card .btn:hover {
    
 background-position: 0 100%;
}


 
/* Contact Section */
.contact {
    background: #f1f1f1;
    animation: fadeInUp 1.5s ease-in-out forwards;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact input, .contact textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background: #ff5722;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #333;
}
.next,.prev  {
    background:transparent !important;
    border:none;
  position: relative;
  width: 20px;       /* larghezza totale */
  height: 20px;      
    margin:0 5px;
    cursor:pointer;
}

/* le due linee che formano la freccia */
.next::before,
.next::after,.prev::before,
.prev::after {
  content: "";
  position: absolute;
  width: 3px;                /* spessore linea */
  height: 20px;               /* lunghezza linea */
  background-color: #000000;  /* colore freccia */
  top: 50%;
  left: 50%;
  transform-origin: center;
  border-radius: 2px;
}

/* linea superiore (/) */
.next::before {
  transform: translate(-50%, -40%) rotate(45deg);
}

/* linea inferiore (\) */
.next::after {
  transform: translate(-50%, -100%) rotate(-45deg);
}
.prev::after {
  transform: translate(-50%, -100%) rotate(45deg);
}

/* linea inferiore (\) */
.prev::before {
  transform: translate(-50%, -40%) rotate(-45deg);
}
 
.sectiondesktop {
  display: block;
  float: right;
  position: relative;
  width: 100%;
  min-height: 70vh;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 2;
  margin: 30px 0;
  height: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* nero 50% trasparente */
  z-index: 2;
}

/* per mantenere i contenuti sopra l'overlay */
.sectiondesktop > * {
  position: relative;
  z-index: 3;
}
.info {
    background: #222;
    color: white;
    padding: 30px 20px;
    text-align: center;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards;
}

.info a {
    color: #ff5722;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

.privacy {
    text-decoration: none;
    color: #0072ed !important;
    font-weight: bold;
}
footer {
    text-align: center;
    /* padding: 20px; */
    background: #000000;
    color: #000 !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (min-width: 1501px) and (max-width: 1800px) {
     p {/* font-size:14px !important; */}
    h4 {font-size: 20px !important;}
    h3 { font-size:20px !important;}
}
@media (min-width: 1301px) and (max-width: 1500px) {
  
}
@media (min-width: 1025px) and (max-width: 1300px) {
    .chisiamo .service-card h2{font-size:20px !important;   }
     .chisiamo .service-card p{font-size:20px !important;   }
    .content-chisiamo  .service-grid {
     gap: 10px;  flex-direction:row; display:grid;   grid-template-columns: repeat(2, 1fr); /* 3 colonne uguali */
}
    .hero {
    margin-top: 80px;
    }
     nav {position:fixed;width: 50%;height:100vh;display: none;background: #eee;right: 0;top:0px;/* backdrop-filter: blur(10px); */}
    header nav ul {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        /* background: black; */
        overflow: hidden;
    }

    header.nav-open nav ul {
        height: calc(100vh - 70px);
    }

    header nav ul li {
        margin: 1px 0;
        text-align: center;
    }
    header nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 100;
}
    .contentheader { gap:10px; }
    header { gap:20px; }
    header div ul {
    
    gap: 15px;
    
}
    .hero h1 { font-size:26px !important }
    .hero h2 { font-size:20px !important }
    .hero h4 {font-size: 20px !important;}
    h2 { font-size:38px !important }
    .cont-product-card h3 { font-size:16px }
    .cont-product-card p { font-size:14px }
    .product-card img {/* margin:25% 0; */}
    .infoproduct h4 { font-size:16px; } 
    .infoproduct p { font-size:12px }
    .infoproduct .product-grid {width: 100%;margin:auto} 
    .elementor-widget-container h2 { font-size:20px !important }
     header div ul li a { text-decoration:none; font-size: 12px;text-transform:uppercase;transition:  0.5s linear;height: 100%;position: relative;line-height: 50px;padding:0;display: inline-block;}
  
   .request-motor a {  background-image: linear-gradient(to right, #ed1c24 50%, #b10000 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
            transition:all 0.5s linear; color: #fff;padding: 0px 10px;text-decoration: none;font-size: 11px;border: none; cursor: pointer;  display: flex;align-items: center;gap: 10px; justify-content: center;text-transform: uppercase;align-content: center;margin: 0px auto;}  
   
    
     
     header .menu-toggle {
        display: block;
        z-index: 999999;
        color: #000;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
    margin-top: 80px;
    }
     nav {position:fixed;width: 50%;height:100vh;display: none;background: #eee;right: 0;top:0px;/* backdrop-filter: blur(10px); */}
    header nav ul {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        /* background: black; */
        overflow: hidden;
    }

    header.nav-open nav ul {
        height: calc(100vh - 70px);
    }

    header nav ul li {
        margin: 1px 0;
        text-align: center;
    }
    header nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 100;
}
     .desktopheader {display:none;}
    .imgsupport { display:none }
        .product-card:first-child {flex-direction: column;}
.product-card:last-child {flex-direction: column}
    .grid-colon {display:flex;gap: 20px;width: 100vw; flex-direction:column}
    .noteinfo .itemgrid-colon { padding:60px 20px}
   .itemgrid-colon {width:90%;margin:0 5%;padding: 10px 0;border-bottom: 1px solid #ddd;}
    .itemgrid-colon:last-child{ border:none;}
    .mobileheader {display:flex;justify-content: space-between; padding:5px 15px}
     header .menu-toggle {
        display: block;
        z-index: 999999;
        color: #000;
    }
}
@media (max-width: 1024px) {
    .imgsupport {/* display:none; */}
    .infoproduct .cont-sss ul { list-style:none;flex-direction:column }
    .infoproduct .product-card .contents_spl:first-child{/* height: 150px; */}
     nav ul {
    display: flex;
    list-style: none;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    /* gap: 10px; */
}
    .product-card { flex-direction:column-reverse}
    .product-card:first-child {flex-direction: column;}
.product-card:last-child {flex-direction: column;}
.service-grid-s{ grid-template-columns: repeat(1, 1fr); margin:20px auto; min-width:unset; width:90% }
    .service-card-s { width:100%}
    .services p {width: 80%;margin: 20px auto;color: #000;font-weight:400;font-size:20px;position: relative;}
    .cont-product-faq,.question-card{ flex-direction:column }
    .content-jotform {width: 100%;/* padding:0; *//* background:url(../immagini/banner-bg-red.svg) no-repeat bottom right/cover; */}
    .mobileheader {display:flex;justify-content: space-between; padding:5px 15px}
    footer {
   padding: 20px; 
}
    .footer-column h3 {
  
    text-align: center !important;
 
}
    .corpo-section {display:flex;gap:20px;flex-direction: column;}
    .info-box .info-icon {
    background: #0a283a;
    color: #fff;
    transform: rotate(10deg);
}
.service-card .service-icon {
    background: #0a283a;
    color: #fff;
    transform: rotate(10deg);
    box-shadow: 0 6px 16px rgb(26 33 70 / 40%);
}
    .preventivo-hero {
  
   
    margin: 60px auto 0px auto;
}
    .itemgrid-colon  {flex-direction:column !important;gap: 10px;}
    .itemgrid-colon div {width: 100% !important;overflow:hidden;padding: 20px 0;}
    .itemgrid-colon-d p {
    margin: 0px 0 20px 0;
    font-size: 16px;
}
    .newhero .btn { font-size:14px }
    .newhero {height: auto;}
     .title_section {display:flex;flex-direction:column;gap:10px;width: 90%; margin:auto}
    .title_section h2 ,p{ width:100% !important; padding:0 !important; margin:0}
    .chisiamo {flex-direction:column;height: 100%; width:90%; gap:10px}
    .titleazienda { font-size:30px}
    .text-chisiamo,.content-chisiamo { width:100%}
    

    .products h2 { color:#fff; width:auto; position:relative; margin:0 !important; width:150%}
   .ricambiinfo .cont-sss { margin:10px 0; }
   .ricambiinfo .product-card {margin:0 5%;width:90% !important;gap: 0;}
    .whatsapp-btn i {
    margin-right: 0px;
    font-size: 30px;
  }
    h4 {font-weight: 400;text-transform:uppercase;font-size: 18px;}
    .services>p {width: 80%;margin: 20px auto;display:none;}
    .service-grid {width: 98% !important;margin:auto;flex-direction:column;gap:20px;display:flex !important}
    .sectiondesktop h4 { display:none !important;}
    .content-jotform { width:100% !important}
    .hero  .content-jotform {width: 100% !important;margin-top: 90px;}
    .sr {  height:140px;}
    .jotformclas p { width:90% }
    .desktopheader {display:none;}
   .contatti-info {/* display:none; */}
    #cookie-banner { width:100%; height:auto; bottom:0 !important; top:inherit; transform:inherit; left:inherit }
    #cookie-banner div { display:flex; flex-direction:column }
        section h2 {font-size: 20px !important;margin:0 5%;}
    .textmotor { width:100% !important; }
        .textmotor h2 { text-align:center !important; }
     .textmotor p{ text-align:center !important; font-size:20px !important }
    .ricambiauto h2 { margin:30px 5%;} }
    h2 { line-height:1.2em}
    .product-card {
        height: auto;
        flex-direction: column;
    }
    form {
        /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
        display: flex;
        width: 100% !important;
        margin: auto !important;!i;!;
        flex-direction: column;
    }
}