.breadcam_bg_2 {
    background-image: url(../../../img/banner/bg_about.webp) !important;
}
/* Container Icone */
.servizi-borgo-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}
.servizio-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.servizio-item:hover {
    transform: translateY(-5px);
}
.servizio-item i {
    display: block;
    font-size: 41px;
    color: #000; /* Colore oro per le icone */
    margin-bottom: 10px;
}
.servizio-item p {
    font-size: 16px;
    font-weight: 600;
    color: #001a49; /* Blu scuro del tuo brand */
    text-transform: uppercase;
}
/*CAROSELLO ABOUT*/
/* Contenitore principale */
.about_active {
    position: relative;
}

/* --- Personalizzazione Frecce (Nav) --- */
.about_active .owl-nav div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8) !important;
    color: #1f1f1f !important;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.about_active .owl-nav div:hover {
    background: #c19b76 !important; /* Colore d'accento */
    color: #fff !important;
}

.about_active .owl-nav .owl-prev {
    left: 20px;
}

.about_active .owl-nav .owl-next {
    right: 20px;
}

/* Contenitore principale */
.about_active {
    position: relative;
}

/* --- Posizionamento Puntini (Dots) --- */
.about_active .owl-dots {
    position: absolute;
    bottom: 30px;      /* Distanza dal bordo inferiore della slide */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;       /* Assicura che stiano sopra l'immagine */
}

/* --- Stile dei singoli puntini --- */
.about_active .owl-dot {
    display: inline-block;
    outline: none;     /* Rimuove il bordo blu al click */
}

.about_active .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important; /* Bianco semi-trasparente */
    display: block;
    margin: 0 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* --- Puntino Attivo --- */
.about_active .owl-dot.active span {
    background: #fff !important; /* Bianco pieno per la slide attiva */
    transform: scale(1.3);       /* Leggermente pi&#65533; grande */
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

/* Nasconde il bordo dei bottoni nativi di Owl */
.about_active .owl-dot:focus, 
.about_active .owl-dot:active {
    outline: none;
}

/* Spaziatura extra se necessaria */
.mt-50 { margin-top: 50px; }
.mb-100 { margin-bottom: 100px; }






