@charset "utf-8";

/* +++++++++++++++++++++++++
OVIT - CUSTOM CSS
+++++++++++++++++++++++++ */


/*
=============
@variables globali
=============
*/

:root {
    --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


/* 
=============
@audit navigazione
=============
*/

.navigazione {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000000000000000000;
    -webkit-transition: all var(--transition-smooth);
    transition: all var(--transition-smooth);
    background: black;
}

.navigazione.navigazione--gradient {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.navigazione__logo img {
    height: 48px;
    width: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navigazione--scroll,
.navigazione--gradient.navigazione--scroll {
    background: black;
}




.navigazione__container {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navigazione__lingue {
    position: relative;
}

.navigazione__lingue__current {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navigazione__lingue__current span {
    color: var(--arancio);
}

.navigazione__lingue__other {
    padding: 0 10px;
    padding-top: 10px;
    background-color: black;
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
}

.navigazione__lingue__other a {
    display: block;
    padding-bottom: 10px;
    color: white;
    text-align: center;
}

.navigazione__lingue__other.show {
    opacity: 1;
    visibility: visible;
}

.navigazione__lingue__current:hover {
    cursor: pointer;
}

.navigazione__lingue__current.active img {
    transform: rotate(-180deg);
}

.navigazione__lingue__other a:hover {
    color: var(--arancio);
}



@media(min-width:990px) {
    .navigazione.navigazione--scroll .navigazione__container {
        height: 75px;
    }

    .navigazione.navigazione--scroll .navigazione__logo img {
        height: 37px;
    }
}


.navigazione__contenuto {
    color: white;
}

.navigazione__contenuto__links {
    display: flex;
    align-items: center;
}

.navigazione__contenuto__links li {
    display: inline-block;
    margin-left: clamp(10px, 2rem, 30px);
    list-style: none;
    margin-bottom: 0;
}

@media(min-width:768px) {
    .navigazione__contenuto__links li a:hover {
        color: var(--arancio);
    }

    .navigazione__contenuto__links {
        font-size: 0.98em;
    }

    .navigazione__contenuto__links .attivato a {
        color: var(--arancio);
    }
}




.navigazione__contenuto__links li:first-child {
    margin-left: 0;
}

.navigazione__contenuto__links li.evidenza a {
    padding: 8px 18px;
    border-radius: var(--radius);
    font-family: "font_bold";
    background-color: var(--verde2);
    display: inline-block;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.hero__content__cta {
    display: flex;
    gap: clamp(10px, 1.2rem, 20px);
    margin-top: clamp(30px, 2rem, 40px);
}



.burger {
    display: none;
}

.navigazione__contenuto__links a.active {
    color: var(--verde2);
}

@media(max-width:1250px) {
    .navigazione__logo img {
        height: 40px;
    }
}


@media(max-width:990px) {
    .navigazione__container {
        height: 60px;
        padding: 0;
    }

    .navigazione__contenuto {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(100%);
        background-color: black;
        height: 100dvh;
        width: 100%;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        z-index: -1;
        padding-top: calc(60px + 4vh);
        padding-left: 20px;
        padding-right: 20px;
    }

    .navigazione__contenuto__links {
        display: block;
        padding: 0;
        margin: 0;
    }

    .navigazione__contenuto__links :is(li, a) {
        display: block;
        margin: 0;
    }

    .navigazione__contenuto__links a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navigazione__contenuto__links li.evidenza a {
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
    }

    .navigazione__contenuto.show {
        transform: translateX(0);
    }

    .burger__icon__line:last-child {
        margin-bottom: 0;
    }

    .burger {
        display: block;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .burger__ico__wrapper {
        width: 40px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .burger__ico__line {
        width: 36px;
        height: 2px;
        background-color: white;
        margin-bottom: 6px;
        border-radius: 100px;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .burger.active .burger__ico__line {
        width: 28px;
        margin-bottom: 0;
    }

    .burger__ico {
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        transform-origin: center;
    }

    .burger.active .burger__ico__line:nth-child(2) {
        margin-top: -2px;
        transform-origin: center;
        transform: rotate(-90deg);
    }

    .burger.active .burger__ico__line:nth-child(3) {
        display: none;
    }

    .burger.active .burger__ico {
        transform: rotate(45deg);
    }

    .burger__ico__line:last-child {
        margin-bottom: 0;
    }

    .burger:hover {
        cursor: pointer;
    }

    .mobile_dx {
        display: flex;
        align-items: center;
        gap: 20px;
    }

}

@media(max-width:600px) {
    .navigazione__logo img {
        height: 32px;
    }
}

/* 
=============
@audit hero
=============
*/

.hero {
    height: 80vh;
    position: relative;
    color: white;
}

.hero:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero__img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 5;
    padding-top: calc(80px + 8vh);
    padding-bottom: clamp(30px, 10vh, 100px);
    height: 100%;
}

.hero__content__col {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


@media(min-width:768px) {
    .hero__content__text {
        width: 70%;
        max-width: 990px;
    }
}


.hero h1 {
    line-height: 105%;
}

.hero__content__plus {
    margin-top: clamp(40px, 4rem, 70px);
}

.hero__content__plus {
    display: flex;
    align-items: flex-start;
    gap: clamp(30px, 3rem, 50px);
}

.hero__content__plus__item__number {
    margin-bottom: 4px;
}


@media(max-width:600px) {
    .hero__content__plus .hero__content__plus__item:last-child {
        display: none;
    }

    .hero__content__cta {
        display: flex;
        flex-wrap: wrap;
    }

    .hero__content {
        padding-top: calc(60px + 4vh);
    }

    .hero :is(h1, h2) {
        margin-bottom: 40px;
    }

    .hero__content {
        padding-bottom: 20px;
    }
}

/* 
=============
@audit preview prodotti
=============
*/

.gamma_macchine__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: clamp(6px, 1.2rem, 12px);
}

@media(max-width:768px) {
    .gamma_macchine__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .gamma_macchine__grid {
        grid-template-columns: 1fr;
    }
}

.gamma_macchine__item {
    border-radius: var(--radius);
    background-color: var(--grigio);
    padding: clamp(15px, 2rem, 30px);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}


@media(min-width:768px) {
    .gamma_macchine__item:hover {
        cursor: pointer;
        background-color: var(--grigio2);
    }

    .gamma_macchine__item:hover .btn {
        background-color: var(--arancio);
        color: white;
    }
}


.gamma_macchine__item__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    display: inline-block;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}


@media(min-width:768px) {
    .gamma_macchine__item:hover .gamma_macchine__item__img img {
        transform: scale(1.03);
    }
}


.gamma_macchine__item__img {
    margin-bottom: clamp(15px, 3rem, 40px);
    text-align: center;
}

.gamma_macchine__item p:last-child {
    margin-bottom: 0;
}

.gamma_macchine__item .btn {
    margin-top: clamp(15px, 2.5rem, 30px);
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* 
=============
@audit box approfondimento
=============
*/

.box_approfondimento__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: clamp(6px, 1.2rem, 12px);
}

.box_approfondimento__item {
    border-radius: var(--radius);
    background-color: var(--grigio);
    padding: clamp(15px, 2rem, 30px);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.box_approfondimento__item__img img {
    mix-blend-mode: multiply;
    max-height: 200px;
}

.box_approfondimento__item__img {
    margin-bottom: clamp(15px, 3rem, 40px);
    text-align: center;
}

.box_approfondimento__item__text {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

@media(max-width:768px) {
    .box_approfondimento__grid {
        grid-template-columns: 1fr;
    }

    .box_approfondimento__item__text {
        flex-wrap: wrap;
    }
}

@media(max-width:600px) {
    .box_approfondimento__grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100vw;
        transform: translateX(-20px);
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: scroll;
    }

    .box_approfondimento__item {
        width: 80vw;
        min-width: 80vw;
    }

    .box_approfondimento__item .btn {
        display: none;
    }
}




/* 
=============
@audit news
=============
*/

.news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px clamp(6px, 1.2rem, 12px);
}

@media(max-width:768px) {
    .news__grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px clamp(6px, 1.2rem, 12px);
    }
}

@media(max-width:600px) {
    .news__grid {
        grid-template-columns: 1fr;
    }

    .news__grid.news__grid--home {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100vw;
        transform: translateX(-20px);
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: scroll;
    }

    .news__grid.news__grid--home .news__item {
        width: 80vw;
        min-width: 80vw;
    }
}

.news__item__img {
    aspect-ratio: 3/2;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: clamp(15px, 1rem, 20px);
    position: relative;
}

.news__item__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}


@media(min-width:768px) {

    .news__item:hover .news__item__img img {
        transform: scale(1.1);
    }
}


.news__item__img__tag {
    display: flex;
    gap: 7px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.news__item__img__tag span {
    font-size: 0.8em;
    font-family: "font_bold";
    padding: 5px 8px;
    border-radius: 0;
    background-color: var(--arancio);
    color: white;
}

span.data {
    margin-top: 5px;
    opacity: 0.5;
    font-size: 0.7em
}




/* 
=============
@audit plus
=============
*/

.plus__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: clamp(10px, 1.2rem, 20px);
}

.plus__item {
    background-color: var(--grigio);
    padding: clamp(15px, 2rem, 30px);
    border-radius: var(--radius);
}

.plus__item__counter {
    margin-bottom: 15px;
    font-size: 0.9em;
}


.plus__item p:last-child {
    margin-bottom: 0;
}

.plus__item__icon {
    background-color: var(--verde3);
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    margin-bottom: 20px;
}

.plus__item h3 {
    margin-bottom: 15px;
}

@media(min-width:600px) {
    h3.plus__item__title {
        margin-bottom: clamp(30px, 5rem, 80px);
    }
}


#plus h2 {
    margin-bottom: 15px;
}

.plus_riepilogo p {
    line-height: 130%;
}

.plus_testo ul {
    list-style: none;
    padding-left: 0;
}

.plus_testo :is(h2, h3, h4) {
    text-transform: uppercase;
}

.plus_testo ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.plus_testo ul li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-image: url('../img/plus.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 0.2em;
}

@media(max-width:768px) {
    .plus__grid {
        grid-template-columns: 1fr 1fr;
    }

    .plus_testo {
        margin-top: 30px;
    }
}


@media(max-width:600px) {
    .plus__grid {
        display: flex;
        width: 100vw;
        transform: translateX(-20px);
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: scroll;
        flex-wrap: nowrap;
    }

    .plus__item {
        width: 80vw;
        min-width: 80vw;
    }
}

/* 
=============
@audit componenti pagina
=============
*/

.hero_immagine {
    height: 65vh;
    position: relative;
}

.hero__pagina.hero__pagina--no_img .hero_immagine {
    height: auto;
    background-color: var(--grigio);
    overflow: hidden;
}

.hero_immagine__img {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero_immagine__img:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero_immagine__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero_immagine__title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    color: white;
}

.hero__pagina.hero__pagina--no_img .hero_immagine .hero_immagine__title {
    position: relative;
    transform: none;
    color: black;
    padding: clamp(70px, 8rem, 120px) 0;
}

.hero_immagine__deco {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 45vw, 600px);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

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

.hero_immagine__accent {
    width: 50px;
    height: 4px;
    background-color: var(--arancio);
    margin-bottom: 20px;
    display: none;
}

.hero_immagine__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'font_medium';
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 16px;
}

.hero_immagine__breadcrumb a {
    color: var(--arancio);
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.hero_immagine__breadcrumb a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero_immagine__deco {
        width: clamp(200px, 70vw, 350px);
        opacity: 0.05;
        right: -8%;
    }
}


/* blocchi testo */

.blocchi_testo__item p:last-child {
    margin-bottom: 0;
}

/* 
=============
@audit pantone
=============
*/

.blocco_pantone__item {
    padding-left: clamp(15px, 5%, 50px);
    padding-right: clamp(15px, 5%, 50px);
    border-radius: var(--radius);
    background-color: var(--grigio);
    margin-bottom: clamp(15px, 2rem, 30px);
}

.blocco_pantone__item__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: clamp(6px, 1.2rem, 12px);
}

.blocco_pantone__item__grid__item {
    padding: clamp(15px, 2rem, 30px);
    border-radius: var(--radius);
    background-color: white;
}

.blocco_pantone__item__grid__item img {
    max-height: 150px;
}

.blocco_pantone__item__grid__item__img {
    margin-bottom: clamp(20px, 2rem, 30px);
}

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

@media(max-width:1250px) {}

@media(max-width:990px) {}

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

@media(max-width:600px) {
    .blocco_pantone__item__grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        overflow-x: scroll;
        padding-right: clamp(15px, 5%, 50px);
    }

    .blocco_pantone__item__grid__item {
        width: 70vw;
        min-width: 70vw;
    }

    .blocco_pantone__item {
        padding-right: 0;
    }
}

/* 
=============
@audit area riservata
=============
*/

.documenti__item {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.documenti__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.documenti__item:hover {
    cursor: pointer;
    color: var(--arancio);
}

.documenti__item img {
    height: 10px;
    width: auto;
    filter: invert(1);
}

@media(min-width:768px) {
    .documenti {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
}


/* 
=============
@audit prodotto
=============
*/

.hero_prodotto {}

.hero_prodotto__img img {
    mix-blend-mode: multiply;
}

.hero_prodotto__text {
    align-self: center;
}

#prodotto {
    background-color: #F5F5F5;
}

/* magellan */

.magellan__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.sticky_magellan {
    padding: 15px 0;
    background-color: white;
    position: sticky;
    top: 75px;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sticky_magellan a {
    font-size: 0.95em;
}

.magellan a.active {
    color: var(--arancio);
}


@media(max-width:600px) {
    .sticky_magellan {
        padding: 0;
        width: 100vw;
        overflow-x: scroll;
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        white-space: nowrap;
        top: 60px;
    }

    .magellan__inner {
        gap: 0;
    }

    .sticky_magellan a {
        padding: 10px 15px;
        border-right: #cfcfcf solid 1px;
        font-size: 0.9em;
    }

    .hero_prodotto {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero_prodotto__img {
        margin-bottom: 30px;
    }

    .hero_prodotto__cta .scarica_pdf {
        margin-top: 7px;
    }

}

/* gallery */

#gallery .swiper-gallery {
    padding-left: max(clamp(25px, 5%, 75px), calc((100% - 1600px) / 2));
}

#gallery .swiper-slide {
    width: auto;
}

.gallery_controls__item {
    aspect-ratio: 1;
    background-color: var(--grigio);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 3rem, 60px);
    border-radius: var(--radius);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.gallery_controls__item:hover {
    cursor: pointer;
    background-color: var(--grigio2);
}

.gallery_controls__wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.gallery_controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery_controls__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery_pagination {
    position: relative !important;
    width: 100px !important;
    height: 2px !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-radius: 2px;
    overflow: hidden;
    top: auto !important;
    left: auto !important;
}

.gallery_pagination .swiper-pagination-progressbar-fill {
    background-color: var(--arancio) !important;
    border-radius: 2px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery__item img {
    height: 60vh;
    max-height: 550px;
    width: auto;
    display: block;
}



@media(min-width:768px) {
    .descrizione_estesa {
        column-count: 2;
        column-gap: clamp(20px, 4%, 60px);
    }
}

@media (max-width:768px) {
    .gallery_controls img {
        width: 23px;
        height: auto;
    }
}

/* caratteristiche icone */

.caratteristiche_prodotto {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px;
}

.caratteristiche_prodotto__item__icon img {
    height: clamp(50px, 5rem, 80px);
    width: auto;
    display: inline-block;
}

.caratteristiche_prodotto__item {
    font-size: 0.8em;
    text-align: center;
    background-color: var(--grigio);
     padding: clamp(15px, 2.5rem, 20px);
     border-radius: var(--radius);
}


@media(max-width:768px) {
    .caratteristiche_prodotto {
        margin-bottom: 30px;
        grid-gap: 10px;
    }

    .caratteristiche_prodotto__item {
        background-color: var(--grigio);
        padding: clamp(15px, 2rem, 20px);
    }
}

@media(max-width:600px) {

    .gallery__item img {
        height: 300px;
    }

    .caratteristiche_prodotto {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100vw;
        transform: translateX(-5vw);
        padding-left: 5vw;
        padding-right: 5vw;
        overflow-x: scroll;
    }

    .caratteristiche_prodotto__item {
        width: 55vw;
        min-width: 55vw
    }
}

/* descrizione estesa */

.descrizione_estesa {}

/* hotspot */
.prodotto__immagine__inner {
    position: relative;
    display: inline-block;
}

.hotspot_item {
    position: absolute;
    aspect-ratio: 1;
    width: clamp(30px, 2rem, 45px);
    height: auto;
    background-color: black;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 100px;
    z-index: 10;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    transform-origin: center;
    transform: translate(-50%, -50%);
}

.hotspot_item:hover {
    background-color: black;
}

.hotspot_item::before,
.hotspot_item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background-color: black;
    animation: hotspot-ripple 2s ease-out infinite;
    z-index: -1;
}

.hotspot_item::after {
    animation-delay: 1s;
}

@keyframes hotspot-ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hotspot_item:hover {
    cursor: pointer;
}

.hotspot_item.active {
    background-color: var(--verde);
}

.prodotto__img {
    background-color: #F5F5F5;
}

.prodotto__img img {
    mix-blend-mode: multiply;
}


@media(max-width:600px) {

    .prodotto__immagine__mobile__progress {
        height: 2px;
        background-color: #dddddd;
        position: relative;
        margin-top: 5px;
    }

    .prodotto__immagine__mobile__progress::after {
        content: '';
        display: block;
        height: 100%;
        width: var(--progress, 0%);
        background-color: var(--arancio);
        transition: width 0.1s linear;
    }

    .prodotto__immagine {
        transform: translateX(-20px);
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: scroll;
        width: 100vw;
        scrollbar-width: none;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .prodotto__immagine__inner {
        width: 150vw;
    }

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

    .prodotto__immagine {}


}

/* tab approfondimento */

.tab_approfondimento,
.modal_form {
    background-color: white;
    padding: clamp(20px, 2rem, 35px);
    position: fixed;
    z-index: 200000000000000000000000000;
    right: 0;
    top: 0;
    height: 100%;
    transform: translateX(100%);
    transition: all var(--transition-smooth);
    width: 100%;
}

.modal_form__head {
    padding-right: 20%;
    margin-bottom: clamp(30px, 5rem, 80px);
}

#modal_pdf .label {
    margin-bottom: 10px;
    display: block;
    opacity: 0.7;
}


@media(min-width:768px) {

    .tab_approfondimento,
    .modal_form {
        width: clamp(600px, 35vw, 650px);
        border-left: 1px solid #dcdcdc;
    }
}


.tab_approfondimento.show,
.modal_form.show {
    transform: translateX(0);
}

.tab_approfondimento__close {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: black;
    width: clamp(45px, 3rem, 60px);
    aspect-ratio: 1;
    border-radius: var(--radius);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    z-index: 10;
    position: absolute;
    top: 15px;
    right: 15px;
}

.tab_approfondimento__close img {
    height: 18px;
    width: auto;
}

.tab_approfondimento__close:hover {
    cursor: pointer;
}

.tab_approfondimento__head__count {
    width: clamp(45px, 3rem, 60px);
    aspect-ratio: 1;
    height: auto;
    background-color: var(--grigio);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde);
    border-radius: var(--radius);
    font-family: "font_bold";
}

.tab_approfondimento__content {
    height: 100%;
    overflow-y: scroll;
}

.tab_approfondimento__content__bottom {
    margin-top: auto;
}

.tab_approfondimento__video {
    aspect-ratio: 16/9;
    overflow: clip; 
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--radius);
}

.tab_approfondimento__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotspot_loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--transition-smooth);
    z-index: 10;
}

.hotspot_loader.active {
    opacity: 1;
}

.hotspot_loader__ring {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hotspot-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes hotspot-spin {
    to {
        transform: rotate(360deg);
    }
}



.tab_approfondimento__change__ico {
    width: clamp(35px, 2rem, 40px);
    aspect-ratio: 1;
    height: auto;
    background-color: var(--verde5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.tab_approfondimento__change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 30px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    background-color: white;
    padding: clamp(20px, 2rem, 35px);
    width: 100%;
}

.tab_approfondimento__change:hover {
    cursor: pointer;
    color: var(--verde2);
}

.tab_approfondimento__change img {
    width: 30px;
    height: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.tab_approfondimento__change:hover img {
    transform: translateX(20%);
}


@media(max-width:600px) {
    .tab_approfondimento__close span {
        display: none;
    }

    .tab_approfondimento__content {
        padding-top: calc(60px + 3vh);
    }

    .tab_approfondimento__video {
        border-radius: 10px;
        aspect-ratio: 16/9.5;
    }

    .tab_approfondimento__close {
        height: 45px;
        width: 45px;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid #5f5f5f;
    }

}

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

/* correlati */

.correlati__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: clamp(7px, 1.2rem, 10px);
}

.correlati__item {
    background-color: var(--grigio);
    padding: clamp(15px, 2rem, 30px);
    border-radius: var(--radius);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.correlati__item:hover .btn {
    background-color: var(--arancio);
    color: white;
}


.correlati__item:hover {
    cursor: pointer;
    background-color: var(--grigio2);
}

.correlati__item .btn {
    justify-content: center;
    font-size: 0.8em;
}

.correlati__item__img img {
    width: auto;
    height: auto;
    mix-blend-mode: multiply;
    max-height: 150px;
    max-width: 100%;
}

.correlati__item__text {
    margin-top: 25px;
}

.correlati__item__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tab_approfondimento__img {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tab_approfondimento.correlati__tab .tab_approfondimento__img {
    aspect-ratio: inherit;
}

.tab_approfondimento.correlati__tab .tab_approfondimento__img img {
    max-width: 100%;
    height: auto;
}

.tab_approfondimento__img img {
    max-width: 100%;
    height: auto;
}

@media(max-width:1250px) {
    .correlati__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media(max-width:990px) {
    .correlati__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width:768px) {
    .correlati__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .correlati__grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: scroll;
        width: 100vw;
        padding-left: 5vw;
        padding-right: 5vw;
        transform: translateX(-5vw);
    }

    .correlati__item {
        width: 75vw;
        min-width: 75vw;
    }
}

/* 
=============
@audit form
=============
*/


input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: initial;
    /* o qualsiasi altro stile di default */
}

*:focus {
    outline: none !important;
}

/* Stile personalizzato solo per il focus da tastiera */
*:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #b5009d;
}

#oggetto_form p {
    margin-bottom: 0;
}

.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.form label {
    color: #333333;
}


@media(max-width:768px) {
    .form_privacy .wpcf7-list-item {
        margin-bottom: 7px;
    }
}

/* Nascondi i messaggi di errore di CF7 */
.input_form .wpcf7-not-valid-tip,
.input_form .wpcf7-response-output {
    display: none !important;
}

/* Evidenzia i campi con errore */
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form .wpcf7-not-valid input {
    border: 1px solid red !important;
    outline: none;
}

.form input[type="text"],
.form input[type="tel"],
.form textarea,
.form input[type="email"] {
    width: 100%;
    max-width: 100%;
    -webkit-appearance: none;
    border: none;
    border: 1px solid #cecece;
    background-color: white;
    border-radius: 0;
    color: black;
    font-size: 15.5px;
    /* font-size: clamp(14px, 1rem, 16px); */
    padding: 21px 20px;
}

.form input[type="text"]:focus,
.form input[type="tel"]:focus,
.form textarea:focus,
.form input[type="email"]:focus {
    border-color: var(--verde2);
}

.form textarea {
    max-height: 150px;
}

.form select {
    width: 100%;
    padding: 22.5px 15px 22.5px 15px;
    border-radius: 0;
    border: 1px solid #cecece;
    font-size: clamp(14px, 1rem, 16px);
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='black' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.input_form {
    position: relative;
}

.input_form.mb {
    margin-bottom: clamp(10px, 1.2rem, 20px);
}

.input_form label {
    position: absolute;
    display: block;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    margin: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    font-size: 15.5px;
}

.input_form label.label_textarea {
    transform: none;
    top: 15px;
}

.input_form label.label_select {
    display: none;
}

.input_form label.move {
    top: 8px;
    left: 20px;
    transform: translateY(0);
    font-size: 13px;
    color: var(--arancio);
}

.input_form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: clamp(10px, 1.2rem, 15px);
    margin-bottom: clamp(10px, 1.2rem, 20px);
}

.input_form__grid.input_form__grid--9-1 {
    grid-template-columns: 9fr 1fr;
}

input[type="checkbox"],
input[type="radio"] {
    display: block;
    -webkit-appearance: none;
    border: 1px solid #aaa;
    max-height: 18px !important;
    height: 18px !important;
    width: 18px;
    min-width: 18px !important;
    border-radius: 100px;
    margin: 0;
    position: relative;
    background-color: white;
}

input[type="checkbox"]:after,
input[type="radio"]:after {
    -webkit-appearance: none;
    display: block;
    content: "";
    height: 11px !important;
    width: 11px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: var(--arancio);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: var(--arancio);
}

input[type="checkbox"]:checked:after,
input[type="radio"]:checked:after {
    opacity: 1;
    visibility: visible;
}

.form p:last-child {
    margin-bottom: 0 !important;
}

.form__privacy p {
    font-size: 14px;
}

@media(min-width:600px) {
    .form_privacy {
        width: 50%;
    }
}

.form_end {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: clamp(20px, 3rem, 25px);
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-list-item {
    margin: 0;
}

.form input[type="submit"] {
    font-family: 'font_bold';
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    color: white;
    background-color: var(--arancio);
    padding: clamp(10px, 1.1rem, 13px) clamp(40px, 3rem, 60px);
    border-radius: 0;
    -webkit-appearance: none;
    font-size: 16px;
    border: none;
    text-transform: uppercase;
}


@media(max-width:600px) {
    .form input[type="submit"] {
        width: 100%;
    }
}

.form input[type="submit"]:hover {
    cursor: pointer;
}


.wpcf7-list-item,
.wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wpcf7-list-item {
    margin-right: clamp(15px, 1.3rem, 30px);
}

.form_privacy {
    /* margin-top: clamp(15px, 1.3rem, 30px); */
}

.form_privacy p,
.form_privacy {
    font-size: 14px;
}

@media(max-width:1250px) {
    .form_laterale {
        width: 50%;
    }
}


@media(max-width:600px) {

    .wpcf7-list-item,
    .wpcf7-list-item label {
        margin-bottom: 5px;
    }

    .input_form__grid {
        grid-template-columns: 1fr;
    }

    .form_end {
        display: block;
    }
}

/* 
=============
@audit pagina news
=============
*/

.news_filter__item {
    text-transform: uppercase;
}

.news_item_text {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.news_item_text span,
.news_item_text a {
    padding: 7px 12px;
    background-color: white;
    border-radius: var(--radius);
}

.news_filter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news_filter a.active {
    color: var(--arancio);
    font-family: font_bold;
}

.titolo_news {
    margin-bottom: 15px;
}

.container-news {
    max-width: 990px;
}

.news_preview_img {
    margin-bottom: 30px;
    overflow: clip;
    border-radius: var(--radius);
}

.news_preview_img img {
    max-width: 100%;
    height: auto;
}


/* 
=============
@audit footer
=============
*/

footer {
    background-color: black;
    color: white;
}

footer .area_riservata_link a {
    color: white;
    text-transform: uppercase;
    opacity: 1;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer_logo {
    margin-bottom: 30px;
}

footer .link_colore {
    margin-top: 50px;
    display: inline-block;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

footer .link_colore:hover {
    color: var(--verde2);
}






@media(min-width:768px) {
    .footer__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 15%;
    }

    .footer__top__sx {
        width: 65%;
    }

    .footer__top__dx {
        width: 35%;
    }

    .footer_cta {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
}



footer li {
    list-style: none;
    margin-left: 0;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: clamp(50px, 5rem, 100px);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: clamp(20px, 2rem, 30px);
}

.footer_contatto {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.credits span {
    font-family: "font_bold";
}


@media(max-width:600px) {

    .footer_cta {
        margin-top: 30px;
    }

    .footer_contatto {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    footer.pt--small {
        padding-top: 50px;
    }

    footer .link_colore {
        margin-top: 20px;
    }

    .footer__top .grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer__top .grid__col:nth-child(3) .footer_contatto {
        margin-bottom: 0;
    }

    .footer__top .grid__col:nth-child(1) {
        order: 1;
    }

    .footer__top .grid__col:nth-child(3) {
        order: 2;
    }

    .footer__top .grid__col:nth-child(2) {
        order: 3;
    }

    .footer__bottom {
        flex-wrap: wrap;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin-top: 20px;
    }

    .footer__bottom--1 span {
        display: inline-block;
    }

    .footer__bottom--1 {
        margin-bottom: 20px;
    }

    .credits {
        margin-top: 20px;
        display: inline-block;
    }

}

/* tabella modelli */

#modelli {
    color: white;
    background-color: black;
}

.tabella_modelli {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabella_modelli table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.tabella_modelli thead th {
    background-color: var(--arancio);
    color: white;
    text-transform: uppercase;
    font-family: 'font_bold';
    padding: clamp(12px, 1.2rem, 20px) clamp(15px, 2%, 30px);
    text-align: left;
    white-space: nowrap;
}

.tabella_modelli tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tabella_modelli tbody tr:last-child {
    border-bottom: none;
}

.tabella_modelli tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tabella_modelli tbody td {
    color: rgba(255, 255, 255, 0.8);
    padding: clamp(12px, 1.2rem, 20px) clamp(15px, 2%, 30px);
    white-space: nowrap;
}

.tabella_modelli tbody tr:hover td {
    color: rgba(255, 255, 255, 1);
}

.tabella_modelli caption {
    display: none;
}


@media(max-width:600px) {
    .tabella_modelli {
        width: 100vw;
        transform: translateX(-5vw);
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

/* complianz banner cookie */

#cmplz-cookiebanner-container li {
    list-style: none;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    /* height: inherit !important;
    padding: 10px 20px;
    width: inherit !important; */
}

.cmplz-cookiebanner .cmplz-header .cmplz-title {}

#gestione_cookies:hover {
    cursor: pointer;
}

/* password form - area riservata */

.password-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(30px, 5vw, 60px) 20px;
}

.password-form-box {
    background-color: #f5f5f5;
    padding: clamp(20px, 5vw, 30px) clamp(20px, 5vw, 30px);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
}

.post-password-form p:first-child {
    font-family: 'font_bold';
    font-size: clamp(16px, 1.2rem, 20px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    color: var(--nero);
}

.post-password-form label {
    display: block;
    font-family: 'font_bold';
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--arancio);
    margin-bottom: 8px;
}

.post-password-form input[type="password"] {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    font-family: 'font_regular';
    font-size: 1rem;
    background-color: white;
    color: var(--nero);
    outline: none;
    -webkit-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 20px;
}

.post-password-form input[type="password"]:focus {
    border-color: var(--arancio);
}

.post-password-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: clamp(12px, 1.1rem, 15px) clamp(20px, 2rem, 30px);
    background-color: var(--arancio);
    color: white;
    border: 2px solid var(--arancio);
    font-family: 'font_bold';
    font-size: clamp(13px, 0.9rem, 15px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.post-password-form input[type="submit"]:hover {
    background-color: transparent;
    color: var(--arancio);
}

@media (max-width: 600px) {
    .password-form-box {
        padding: 40px 25px;
    }
}

/* /password form */

#cmplz-manage-consent .cmplz-manage-consent {
    display: none;
}

/* contatti strip */

.contatti_strip {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: clamp(30px, 4vw, 50px) 0;
}

.contatti_strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
}

.contatti_strip__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contatti_strip__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.contatti_strip__icon img {
    width: 90%;
    height: auto;
}

.contatti_strip__label {
    font-family: 'font_bold';
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--arancio);
    margin-bottom: 5px;
}

.contatti_strip__value {
    font-family: 'font_medium';
    font-size: clamp(14px, 1rem, 16px);
    color: var(--nero);
    line-height: 1.5;
    display: block;
}

a.contatti_strip__value:hover {
    color: var(--arancio);
}

/* mappa */

.contatti_mappa {
    height: clamp(280px, 45vw, 500px);
    width: 100%;
}

.contatti_mappa iframe {
    display: block;
}

@media (max-width: 768px) {
    .contatti_strip__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* /contatti strip */