@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    /* Colors */
    --grey: #f7f7f7;
    --medium-grey: #e4e4e4;
    --dark-grey: #9da6a8;
    --light-grey: #e7eeefb0;
    --yellow: #ffcb00;
    --yellow-2: #ffda49;
    --yellow-3: #fce9a1;
    --yellow-75: #ffcc00bf;
}
a {
    color: inherit;
    /*text-decoration: none;*/
    transition: all 0.3s ease-in-out;
}

body {
    color: black;
    font-family: "Barlow", sans-serif;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 400;
}

strong {
    font-weight: 700;
}

.p-mb-0 p {
    margin-bottom: 0;
}

.h1-custom h1 {
    font-weight: bold;
}

:focus,
:active {
    outline: none !important;
}

:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    color: inherit;
}

.aspect-ratio-1 {
    --w: 75px;
    aspect-ratio: 1 !important;
    flex: 0 0 var(--w) !important ;
    width: var(--w) !important;
}

/* Background */
.bg-grey {
    background-color: var(--grey);
}
.bg-light-grey {
    background-color: var(--light-grey);
}
.bg-medium-grey {
    background-color: var(--medium-grey);
}
.bg-dark-grey {
    background-color: var(--dark-grey);
}
.bg-yellow {
    background-color: var(--yellow);
}
.bg-yellow-2 {
    background-color: var(--yellow-2);
}
.bg-yellow-3 {
    background-color: var(--yellow-3);
}
.bg-yellow-75 {
    background-color: var(--yellow-75);
}
/* Border */
.border-yellow {
    border-color: var(--yellow) !important;
}
/* Text-color */
.text-medium-grey {
    color: var(--medium-grey);
}
.text-yellow {
    color: var(--yellow);
}
/* Button */
/* .btn-r-arrow::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f061";
    font-weight: 300;
    position: relative;
    left: 0;
    transition: left 0.3s ease-in-out;
} */
.btn-r-arrow:hover::after {
    left: 3px;
}
.btn-b-arrow::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f063";
    font-weight: 300;
    position: relative;
    top: 0;
    transition: top 0.3s ease-in-out;
}
.btn-b-arrow:hover::after {
    top: 1px;
}
.btn-big::after {
    font-size: 50px;
}
.btn-circle::after {
    font-size: 40px;
}
.btn-circle {
    width: 75px;
    height: 75px;
}
.btn-circle:hover {
    cursor: pointer;
}
/* .btn-circle.btn-big {
    width: 100px;
    height: 100px;
} */
.btn-circle.btn-small {
    width: 60px;
    height: 60px;
}
.btn-square {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.btn-pill {
    min-width: 150px;
}
.btn.bg-white:not(.select):hover,
.btn.bg-transparent:hover {
    background-color: var(--yellow) !important;
}
.btn.bg-medium-grey.active {
    background-color: var(--yellow) !important;
    font-weight: bold;
}
.btn.bg-yellow:hover {
    background-color: white !important;
    color: initial !important;
}
.bg-dark-grey .btn.bg-yellow:hover,
.bg-dark-grey .btn.bg-yellow:hover i {
    background-color: var(--yellow) !important;
    color: white !important;
}
.btn.bg-yellow.no-hov:hover {
    background-color: var(--yellow) !important;
    color: initial !important;
}
#goToHeaderBtn {
    position: fixed;
    z-index: 9999;
    bottom: 64px;
    right: 15px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
#goToHeaderBtn.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Hover */
.hov-underline,
.hov-underline .underline-target {
    text-decoration: none;
}
.hov-underline:hover,
.hov-underline:hover .underline-target {
    text-decoration: underline;
}
.hov-to-right:hover::after,
.hov-to-right:hover .to-right-target::after {
    left: 3px;
}
.hov-zoom .zoom-target {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
.hov-zoom:hover .zoom-target {
    transform: scale(1.05);
}
/* List */
.list-custom {
    list-style-type: none;
    padding-left: 0;
}
.list-angle li,
.list-yellow li {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.list-angle li::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    font-size: 14px;
    font-weight: 900;
    color: white !important;
}
.list-yellow li::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: var(--yellow);
    border-radius: 50%;
}
.list-yellow li::marker,
.list-yellow li.marker,
.list-yellow li .marker {
    color: var(--yellow);
}
.list-columns ul {
    padding: 0.5rem 0 0 2.5rem;
}
.list-columns ul li {
    margin: 0.25rem 0;
}
.container-bigger,
.container-bigger-md,
.semi-container,
.semi-container-lg {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}
.border-6 {
    border-width: 8px !important;
}
.br-custom {
    border-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius-xxl);
}
.br-custom-2 {
    border-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius-xl);
}
.bg-opacity-90 {
    --bs-bg-opacity: 0.9;
}
.marked mark,
.marked .marker {
    padding: 0.1875em 0.75rem;
    color: inherit;
    background-image: linear-gradient(
        to top,
        var(--yellow) 56.666%,
        white 56.666%
    );
}
.mt-6 {
    margin-top: 80px;
}
.mb-6 {
    margin-bottom: 80px;
}
.pointer {
    cursor: pointer;
}
.ratio-2x3 {
    --bs-aspect-ratio: calc(3 / 2 * 100%);
}
.ratio-3x2 {
    --bs-aspect-ratio: calc(2 / 3 * 100%);
}
.rounded-top-5 {
    border-top-left-radius: var(--bs-border-radius-xxl);
    border-top-right-radius: var(--bs-border-radius-xxl);
}
.rounded-top-4 {
    border-top-left-radius: var(--bs-border-radius-xl);
    border-top-right-radius: var(--bs-border-radius-xl);
}
.rounded-bottom-4 {
    border-bottom-left-radius: var(--bs-border-radius-xl);
    border-bottom-right-radius: var(--bs-border-radius-xl);
}
.shadow {
    box-shadow: 0 0 5px var(--dark-grey);
}
.text-xs {
    font-size: 12px;
}
.text-sm {
    font-size: 14px;
}
.translate-25-y {
    transform: translateY(-25%);
}
.w-33 {
    width: 33.333%;
}
.w-66 {
    width: 66.6666%;
}
.w-90 {
    width: 90%;
}
.h-90 {
    height: 90%;
}
/* Modale */
.modal .btn-close:focus {
    box-shadow: none;
}
/* Form */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem #ffcb004f;
}
.form .form-control:focus,
.form .custom-file:focus {
    box-shadow: 0 0.25rem 0 0 #ffcb004f;
    border-color: #dee2e6;
}
.form-container .bg {
    height: calc(100% - 3rem);
}
.form-select:focus {
    border-color: #dee2e6;
}
/*.form label:not(.form-check-label) {
  display: none;
}*/
.form .form-control:not(.form-check-input),
.form .custom-file,
.form .form-select {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid black;
    padding: 1rem 0;
    font-size: 14px;
    color: black;
    background-color: transparent;
}
.form .custom-file {
    padding-top: 0;
    min-height: 50px;
    margin-top: 0.25rem;
}
.form .form-check {
    font-size: 12px;
}
.form textarea {
    min-height: 0;
    height: 54px;
}
.form-allega-file-input {
    border: 1px solid black !important;
}
/* Header */

.header {
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s;
}

.header .btn-container > div:last-child {
    border-right: 1px solid var(--yellow);
}

.header .navbar-toggler-icon {
    background-image: none;
}

.header .navbar-toggler:focus {
    box-shadow: none;
}

.header .dropdown-menu.show {
    animation: dropdown-show 0.5s forwards;
}

@keyframes dropdown-show {
    from {
        clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0);
    }
    to {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    }
}

.bar {
    display: inline-block;
    height: 3px;
    width: 15px;
    background-color: var(--yellow);
}

.bar-white {
    background-color: white;
}

.bar-menu {
    margin-top: 3px;
    margin-bottom: 3px;
    border-radius: 10px;
}

.bar-menu:first-of-type {
    width: 85%;
    background-color: #ec1d24;
}

.bar-menu:nth-of-type(2) {
    width: 80%;
    background-color: #f48120;
}

.bar-menu:last-of-type {
    width: 75%;
    background-color: #ffca06;
}

/* Testata */

.testata {
    height: 63vh;
    min-height: 420px;
}

.testata.testata-2 {
    height: 33vh;
    min-height: 220px;
}
.breadcrumb {
    margin-bottom: 0 !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: inherit;
}
.testata .breadcrumb .active,
.testata .breadcrumb .breadcrumb-item:last-child {
    font-weight: bold;
}
.testata.testata-home {
    height: calc(90vh - 143px);
    min-height: 360px;
}

.testata-home .link-container {
    min-width: 288px;
}

.testata-home .btn-circle {
    top: 25%;
    right: -50px;
    transform: translateY(-50%);
}

.assistenza-banner {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;

    bottom: 0;
    left: 0.75rem;
    z-index: 10;
}

.assistenza-banner > span {
    border-right: 1px solid;
}

/* Cards */
.card-animation {
    transition: width 0.3s ease-in-out;
}

.card-animation:hover {
    border-color: var(--yellow) !important;
}

.card-animation .btn-circle {
    transform: translate(50%, -50%);
}

.card-animation .target {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    width: 175px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sun-logo {
    max-width: 280px;
    width: 33.333%;
    transform: translate(33%, -33%);
}

.worker-img {
    max-width: 170px;
    min-width: 100px;
}

.blog-article:last-of-type {
    border-bottom: none !important;
}

.footer {
    position: relative;
    z-index: 11;
}

.footer .btn-circle {
    width: 50px;
    height: 50px;
}

.prodotti .cerchio,
.prodotti .cerchio > div {
    aspect-ratio: 1;
    width: 75%;
    max-width: 440px;
}

.prodotti .cerchio > div {
    right: -16px;
    bottom: -16px;
}

.prodotti .img-prodotto {
    width: 40%;
    bottom: -32px;
    right: 33.333%;
    transform: translateX(50%);
}

.tag-banner {
    left: -64px;
    bottom: 32px;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.pompe-aria-acqua .bollino {
    max-width: 180px;
    min-width: 100px;
    flex: 0 1 calc((100% / 6) - 1rem);
}
.pompe-aria-acqua .bollino .label {
    max-width: 120px;
    aspect-ratio: 1;
}

.residenziale .bollino {
    flex: 0 0 calc((100% / 2) - 1rem);
    max-width: 230px;
}

.tris-immagini {
    min-width: 100%;
}
.tris-immagini > div:nth-of-type(2) {
    width: 38%;
}

.tris-immagini > div:first-of-type,
.tris-immagini > div:last-of-type {
    width: calc((100% - 38%) / 2);
}
.pallino {
    width: 30px;
    height: 30px;
}
.vantaggi .pallino span {
    transform: translateY(-2px);
}
.azienda .intro .ratio.ratio-1x1 {
    max-width: 100px;
}

/* Time line */
.time-line {
    padding-left: 48px;
    transition: padding-left 0.3s ease-in-out;
}
.time-line .row.first-line {
    border-bottom: 3px solid white;
    padding-top: 48px;
}
.time-line .row.first-line .border-start {
    padding-bottom: 48px;
}
.time-line .row.second-line {
    padding-bottom: 48px;
    justify-content: end;
}
.time-line .row.second-line .border-start {
    padding-top: 48px;
}
.time-line .row.first-line .pallino {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}
.time-line .pallino.no-translate {
    transform: translate(0, 0) !important;
}
.time-line .row.second-line .pallino {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}
.time-line .btn-prev,
.time-line .btn-next {
    width: 50px;
    height: 50px;
}
.time-line .btn-container {
    top: -24px;
}
.time-line .btn-container button:disabled {
    opacity: 0.5;
}
.time-line .date {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
}
.time-line .date.d-none {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.entry-next {
    animation: entry-next 0.3s forwards;
    opacity: 1;
}
@keyframes entry-next {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.entry-prev {
    animation: entry-prev 0.3s forwards;
    opacity: 0;
}
@keyframes entry-prev {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.exit-next {
    animation: exit-next 0.3s forwards;
}
@keyframes exit-next {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}
.exit-prev {
    animation: exit-prev 0.3s forwards;
}
@keyframes exit-prev {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
.time-line .next-date {
    width: 27%;
}
.azienda .logo-enercomb {
    bottom: -12px;
}
.list-pill .rounded-pill {
    max-width: 500px;
}
.risorse .card-foto-testo {
    max-width: 400px;
}
.card-foto-testo .ratio {
    min-height: 175px;
}
.card-foto-testo .card-text {
    top: -8px;
}
.swiperSoluzioniResidenziali .swiper-button {
    color: var(--medium-grey);
}
.swiperSoluzioniResidenziali .swiper-pagination-bullet-active {
    background: var(--yellow);
}
.swiperSoluzioniResidenziali .swiper-button {
    top: auto;
    bottom: 0;
    z-index: 11;
}
.swiperSoluzioniResidenziali .swiper-button-next {
    right: 18px;
}
.swiperSoluzioniResidenziali .swiper-button-prev {
    left: 18px;
}
/* .swiperSoluzioniResidenziali .swiper-slide > div {
    min-width: 315px;
} */
.swiper3 .swiper-slide picture,
.swiperProdotto .swiper-slide picture {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.swiper3 .swiper-button-next,
.swiper3 .swiper-button-prev,
.swiperProdottoContainer .swiper-button-next,
.swiperProdottoContainer .swiper-button-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiperProdottoContainer .swiper-button-next {
    right: 10px;
}
.swiperProdottoContainer .swiper-button-prev {
    left: 10px;
}
.swiper3 .swiper-button-prev {
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translate(calc(-100% - 4px), 0);
}
.swiper3 .swiper-button-next {
    bottom: 0;
    top: auto;
    right: 50%;
    transform: translate(calc(100% + 4px), 0);
}
.swiper3 .swiper-button-next:after,
.swiper3 .swiper-button-prev:after,
.swiperProdottoContainer .swiper-button-next:after,
.swiperProdottoContainer .swiper-button-prev:after {
    font-family: "Font Awesome 6 Pro";
    font-size: 1rem;
    color: white;
    content: "\f104";
}
.swiper3 .swiper-button-next:after,
.swiperProdottoContainer .swiper-button-next:after {
    transform: rotate(180deg);
}
.consulenza .servizi .btn-circle,
.media .servizi .btn-circle {
    top: 100%;
    right: 1rem;
    transform: translateY(-50%);
}
.risorse .dropdown-container {
    transform: translateY(-2rem);
}
.risorse .dropdown-container .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    border: none;
    font-size: 12px;
    border-left: 1px solid var(--yellow);
    padding-left: 0.5rem;
    position: relative;
    top: 3px;
}
.preview-document {
    max-width: 200px;
}
.risorse .btn-b-arrow {
    transform: translate(-75%, -75%);
}
.risorse .border-custom {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
            to right,
            transparent 30%,
            black 30%,
            black 70%,
            transparent 70%
        )
        1;
}
.news-img {
    min-width: 50%;
}
.contatti-link > div {
    min-height: 85px;
}
.contatti .mappa {
    max-height: 550px;
}
.lavora-con-noi .posizioni .btn-circle {
    top: 1rem;
    right: 1rem;
}
.lavora-con-noi .posizioni .titolo-posizione {
    bottom: 0;
    left: -56px;
    border-top-right-radius: 1rem;
}
.lavora-con-noi .btn-small {
    transform: scale(0.8);
}
/* tipografia */
.link-no-decoration,
.link-no-decoration a {
    text-decoration: none;
}
.h-uppercase :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase !important;
}
.h-fw-bold :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 700 !important;
}
:is(.h-my-0, .h-mt-0) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 0 !important;
}
:is(.h-my-0, .h-mb-0) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0 !important;
}
:is(.h-my-3, .h-mt-3) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 1rem !important;
}
:is(.h-my-3, .h-mb-3) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1rem !important;
}
:is(.h-my-4, .h-mt-4) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 1.5rem !important;
}
:is(.h-my-4, .h-mb-4) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1.5rem !important;
}
:is(.h-my-5, .h-mt-5) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 3rem !important;
}
:is(.h-my-5, .h-mb-5) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 3rem !important;
}
:is(.h-text) :is(h1, h2, h3) {
    font-size: calc(1.375rem + 1.5vw) !important;
}
:is(.h-fs-1) :is(h1, h2, h3) {
    font-size: calc(1.375rem + 1.5vw) !important;
}

:is(.h-fs-2) :is(h1, h2, h3) {
    font-size: calc(1.325rem + 0.9vw) !important;
}

:is(.h-fs-3) :is(h1, h2, h3) {
    font-size: calc(1.3rem + 0.6vw) !important;
}

:is(.h-fs-4) :is(h1, h2, h3) {
    font-size: calc(1.275rem + 0.3vw) !important;
}

:is(.h-fs-5) :is(h1, h2, h3) {
    font-size: 1.25rem !important;
}

:is(.h-fs-6) :is(h1, h2, h3) {
    font-size: 1rem !important;
}
@media (min-width: 1200px) {
    :is(.h-fs-1) :is(h1, h2, h3) {
        font-size: 2.5rem !important;
    }
    :is(.h-fs-2) :is(h1, h2, h3) {
        font-size: 2rem !important;
    }
    :is(.h-fs-3) :is(h1, h2, h3) {
        font-size: 1.75rem !important;
    }
    :is(.h-fs-4) :is(h1, h2, h3) {
        font-size: 1.5rem !important;
    }
}
ol,
ul {
    padding-left: 1.25rem;
}
.p-mb p:not(:last-child),
.li-mb li {
    margin-bottom: 1rem;
}
.p-mb p:last-child {
    margin-bottom: 0;
}
.p-mb-0 p {
    margin-bottom: 0;
}

/* 08/11/2025 */

.feature-wrap {
    min-height: 520px;
}

/* cerchi */
.feature-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f2c94c;
    background: #fff;
}
.feature-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DESKTOP: absolute solo dentro .feature-desktop */
.feature-desktop .feature-circle,
.feature-desktop .feature-pill {
    position: absolute;
}

/* sinistra grande */
.feature-circle--left {
    width: 420px;
    height: 420px;
    left: 0;
    top: 10px;
}

/* destra più piccola */
.feature-circle--right {
    width: 320px;
    height: 320px;
    right: 0;
    bottom: 18%;
}

/* pillole (base) */
.feature-pill {
    background: #fff;
    border-radius: 999px;
    padding: 28px 34px 28px 78px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 620px;
    position: relative; /* per feature-num */
}

.feature-num {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f2c94c;
    font-weight: 700;
    display: grid;
    place-items: center;
}

/* posizionamenti desktop */
.feature-pill--one {
    top: 15%;
    left: 20%;
}
.feature-pill--two {
    top: 40%;
    left: 40%;
    max-width: 560px;
}

/* spacer desktop */
.feature-spacer {
    height: 520px;
}

/* MOBILE/TABLET */
.feature-circle--mobile {
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.feature-pill--mobile {
    border-radius: 28px;
    padding: 22px 22px 22px 70px;
    max-width: 720px;
    margin: 0 auto;
}

/* numero un filo più interno su mobile */
.feature-pill--mobile .feature-num {
    left: 18px;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--medium-grey);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-circle {
    width: 92px;
    height: auto;
}

.swiper-pagination-bullet-active {
    background: var(--yellow) !important;
}

.custom-form-check .btn-filter {
    background-color: #e9e9e9;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.custom-form-check .btn-check:checked + .btn-filter {
    background-color: #f7c600; /* giallo */
    color: #000;
}

.custom-form-check .btn-filter:hover {
    background-color: #dcdcdc;
}
.custom-form-check .form-check {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgb(247 198 2 / 20%) !important;
}

.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgb(247 198 2 / 20%) !important;
}

.custom-form-select .form-select {
    padding: 8px 18px;
}

.list-angle.prodotti li::before {
    color: black !important;
}

/*  */
/* .car-tech .img-container {
    max-width: 263px;
}
.car-tech .label {
    width: 80px;
    height: 80px;
    cursor: pointer;
}
.car-tech .label-1 {
    top: 99px;
    left: -36px;
}
.car-tech .label-2 {
    top: 350px;
    left: -25px;
}
.car-tech .label-3 {
    top: 452px;
    left: 130px;
}
.car-tech .label-4 {
    top: 319px;
    left: 223px;
}
.car-tech .label-5 {
    top: 147px;
    left: 216px;
}
.car-tech .label-6 {
    top: 14px;
    left: 84px;
}
.car-tech .text-label {
    display: none;
} */
.zoom {
    animation: zoomMove 0.3s linear forwards;
}

@keyframes zoomMove {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
.car-tech .label:not(.zoom) {
    transform: scale(0);
}
.car-tech .label {
    transition: all 0.3s ease;
}
.car-tech .label.change {
    box-sizing: content-box;
    background-color: var(--yellow) !important;
    border: 8px solid var(--yellow-3) !important;
}

.form-check-input {
    cursor: pointer;
}
.form-check-input:checked {
    background-color: var(--yellow);
    border-color: var(--yellow);
}
.form-check-input:focus,
.form-control:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 5px 0.25rem
        color-mix(in srgb, var(--yellow) 50%, transparent);
}
.form .form-control:focus,
.form-select:focus,
.choices:focus {
    box-shadow: 0 5px 5px -4px var(--yellow);
    border-bottom: 1px solid var(--yellow) !important;
}

.form .form-control:not(.form-check-input),
.form .form-select {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid black;
    padding: 1rem 0;
    margin-top: 0.75rem;
    font-size: 14px;
    color: black;
    background-color: transparent;
}

.form .choices__inner {
    border: 0;
    border-bottom: 1px solid #000000;
    border-radius: 0 !important;
    border-color: #000000 !important;
    padding-left: 0 !important;
}

.form .choices__list {
    padding-left: 0 !important;
}

.choices.is-flipped .choices__list--dropdown {
    top: 100% !important;
    bottom: auto !important;
}

.categorie-buttons .active,
.categorie-buttons > *:hover {
    background-color: transparent !important;
    border: 2px solid var(--yellow) !important;
    font-weight: 600;
}

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

.btn-solid-yellow {
    border: 1px solid var(--yellow) !important;
    background-color: var(--yellow) !important;
    color: var(--black);
}
.btn-solid-yellow:hover,
.btn-solid-yellow:active,
.btn-solid-yellow:focus,
.btn-solid-yellow:focus-visible,
.btn-solid-yellow:focus-within {
    border: 1px solid var(--yellow) !important;
    background-color: transparent !important;
}
.btn-close {
    --bs-btn-close-opacity: 1;
}

.home .card-prodotti {
    top: 50px;
}
.w-40 {
    width: 40%;
}

.lista-4-righe {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pt-6 {
    padding-top: 5rem !important;
}
.nav-caratteristiche-prodotto .nav-link.active,
.nav-caratteristiche-prodotto .nav-link:hover {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
}
.nav-caratteristiche-prodotto .nav-link.active {
    font-weight: bold;
}
.sezioni-alternate h2,
.sezioni-alternate h3 {
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.sezioni-alternate > div.row:nth-child(even) {
    background-color: var(--light-grey);
}

.link-after-arrow a::after {
    content: "\f0ab";
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
    font-weight: 300;
    margin-left: 0.5rem;
}

.hvr-underline:hover {
    text-decoration: underline !important;
}
.hvr-text-black .hvr-target {
    transition: all 0.3s ease-in-out;
}
.hvr-text-black:hover .hvr-target {
    color: var(--black) !important;
}
.pic-custom picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*menu*/
/* DESKTOP */
@media (min-width: 992px) {
    .offcanvas-body .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* MOBILE / TABLET */
@media (max-width: 991.98px) {
    .offcanvas-body .navbar-nav > .nav-item {
        border-top: 1px solid var(--medium-grey);
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .offcanvas-body .navbar-nav > .nav-item:last-child {
        border-bottom: 1px solid var(--medium-grey);
    }

    .offcanvas-body .dropdown-menu {
        display: block !important;
        position: static !important;
        transform: none !important;
        float: none !important;
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0.5rem 0 0 1rem !important;
        margin: 0 !important;
    }

    .offcanvas-body .dropdown-toggle::after {
        display: none;
    }

    .offcanvas-body .dropdown-menu .dropdown-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
